forked from espressif/arduino-esp32
more fixes
This commit is contained in:
2
.github/scripts/install-platformio-esp32.sh
vendored
2
.github/scripts/install-platformio-esp32.sh
vendored
@ -13,7 +13,7 @@ echo "Installing Platform ESP32 ..."
|
|||||||
python -m platformio platform install $PLATFORMIO_ESP32_URL > /dev/null 2>&1
|
python -m platformio platform install $PLATFORMIO_ESP32_URL > /dev/null 2>&1
|
||||||
|
|
||||||
echo "Replacing the framework version ..."
|
echo "Replacing the framework version ..."
|
||||||
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()"
|
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()"
|
||||||
|
|
||||||
if [ "$GITHUB_REPOSITORY" == "espressif/arduino-esp32" ]; then
|
if [ "$GITHUB_REPOSITORY" == "espressif/arduino-esp32" ]; then
|
||||||
echo "Linking Core..."
|
echo "Linking Core..."
|
||||||
|
@ -8,9 +8,9 @@
|
|||||||
#ifndef COMPONENTS_CPP_UTILS_BLEUUID_H_
|
#ifndef COMPONENTS_CPP_UTILS_BLEUUID_H_
|
||||||
#define COMPONENTS_CPP_UTILS_BLEUUID_H_
|
#define COMPONENTS_CPP_UTILS_BLEUUID_H_
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
|
#include <string>
|
||||||
#if defined(CONFIG_BT_ENABLED)
|
#if defined(CONFIG_BT_ENABLED)
|
||||||
#include <esp_gatt_defs.h>
|
#include <esp_gatt_defs.h>
|
||||||
#include <string>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief A model of a %BLE UUID.
|
* @brief A model of a %BLE UUID.
|
||||||
|
Reference in New Issue
Block a user