Skip to content

Commit 976aca4

Browse files
committed
more fixes
1 parent 72c25f2 commit 976aca4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/install-platformio-esp32.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo "Installing Platform ESP32 ..."
1313
python -m platformio platform install $PLATFORMIO_ESP32_URL > /dev/null 2>&1
1414

1515
echo "Replacing the framework version ..."
16-
python -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/platforms/espressif32/platform.json'), 'r+'); data=json.load(fp); data['packages']['framework-arduinoespressif32']['version'] = '*'; del data['packages']['framework-arduinoespressif32']['owner']; fp.seek(0); fp.truncate(); json.dump(data, fp); fp.close()"
16+
python -c "import json; import os; fp=open(os.path.expanduser('~/.platformio/platforms/espressif32/platform.json'), 'r+'); data=json.load(fp); data['packages']['framework-arduinoespressif32']['version'] = '*'; fp.seek(0); fp.truncate(); json.dump(data, fp); fp.close()"
1717

1818
if [ "$GITHUB_REPOSITORY" == "espressif/arduino-esp32" ]; then
1919
echo "Linking Core..."

libraries/BLE/src/BLEUUID.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#ifndef COMPONENTS_CPP_UTILS_BLEUUID_H_
99
#define COMPONENTS_CPP_UTILS_BLEUUID_H_
1010
#include "sdkconfig.h"
11+
#include <string>
1112
#if defined(CONFIG_BT_ENABLED)
1213
#include <esp_gatt_defs.h>
13-
#include <string>
1414

1515
/**
1616
* @brief A model of a %BLE UUID.

0 commit comments

Comments
 (0)