Skip to content

Commit 60b8b47

Browse files
authored
Update IDF to de750e9 and add BLE (espressif#723)
* Update IDF to de750e9 * Add BLE Library submodule
1 parent e6a5b68 commit 60b8b47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+264
-45
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "libraries/BLE"]
2+
path = libraries/BLE
3+
url = https://github.com/nkolban/ESP32_BLE_Arduino.git

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ script:
1919
- mkdir espressif
2020
- cd espressif
2121
- ln -s $TRAVIS_BUILD_DIR esp32
22-
- cd esp32/tools
22+
- cd esp32
23+
- git submodule update --init --recursive
24+
- cd tools
2325
- python get.py
2426
- export PATH="$HOME/arduino_ide:$TRAVIS_BUILD_DIR/tools/xtensa-esp32-elf/bin:$PATH"
2527
- which arduino

docs/arduino-ide/debian_ubuntu.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ Installation instructions for Debian / Ubuntu OS
1313
mkdir -p ~/Arduino/hardware/espressif && \
1414
cd ~/Arduino/hardware/espressif && \
1515
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
16-
cd esp32/tools/ && \
16+
cd esp32 && \
17+
git submodule update --init --recursive && \
18+
cd tools && \
1719
python get.py
1820
```
1921
- Restart Arduino IDE

docs/arduino-ide/fedora.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Installation instructions for Fedora
1010
mkdir -p ~/Arduino/hardware/espressif && \
1111
cd ~/Arduino/hardware/espressif && \
1212
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
13-
cd esp32/tools/ && \
13+
cd esp32 && \
14+
git submodule update --init --recursive && \
15+
cd tools && \
1416
python get.py
1517
```
1618
- Restart Arduino IDE

docs/arduino-ide/mac.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ Installation instructions for Mac OS
88
mkdir -p ~/Documents/Arduino/hardware/espressif && \
99
cd ~/Documents/Arduino/hardware/espressif && \
1010
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
11-
cd esp32/tools/ && \
11+
cd esp32 && \
12+
git submodule update --init --recursive && \
13+
cd tools && \
1214
python get.py
1315
```
1416
- If you get the error below. Install the command line dev tools with xcode-select --install and try the command above again:

docs/arduino-ide/opensuse.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ Installation instructions for openSUSE
1414
mkdir -p ~/Arduino/hardware/espressif && \
1515
cd ~/Arduino/hardware/espressif && \
1616
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
17-
cd esp32/tools/ && \
17+
cd esp32 && \
18+
git submodule update --init --recursive && \
19+
cd tools && \
1820
python get.py
1921
```
2022
- Restart Arduino IDE

docs/esp-idf_component.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ To use as a component of ESP-IDF
99
mkdir -p components && \
1010
cd components && \
1111
git clone https://github.com/espressif/arduino-esp32.git arduino && \
12-
cd .. && \
12+
cd arduino && \
13+
git submodule update --init --recursive && \
14+
cd ../.. && \
1315
make menuconfig
1416
```
1517
- ```make menuconfig``` has some Arduino options

libraries/BLE

Submodule BLE added at 98cd229

tools/sdk/bin/bootloader.bin

512 Bytes
Binary file not shown.

tools/sdk/bin/bootloader_qio.bin

528 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)