8000 Removal of space in directory name; Makefile cleanup · herosugi/esp32-snippets@0b4404d · GitHub
[go: up one dir, main page]

Skip to content

Commit 0b4404d

Browse files
committed
Removal of space in directory name; Makefile cleanup
There was a space in a directory name. That just causes problems on all platforms for no great reason. Slight problem with the Linux Makefile.arduino that was corrected. Fantastic samples added to the project courtesy of Evandro.
1 parent 31c1df9 commit 0b4404d

File tree

22 files changed

+5
-3
lines changed

22 files changed

+5
-3
lines changed
File renamed without changes.

cpp_utils/Makefile.arduino

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
# The source file for BLE
99
#
1010
BLE_FILES= \
11-
BLEDevice.cpp \
12-
BLEDevice.h \
1311
BLE2902.cpp \
1412
BLE2902.h \
1513
BLEAddress.cpp \
@@ -28,6 +26,8 @@ BLE_FILES= \
2826
BLEDescriptor.cpp \
2927
BLEDescriptor.h \
3028
BLEDescriptorMap.cpp \
29+
BLEDevice.cpp \
30+
BLEDevice.h \
3131
BLERemoteCharacteristic.cpp \
3232
BLERemoteCharacteristic.h \
3333
BLERemoteDescriptor.cpp \
@@ -60,7 +60,9 @@ build_ble:
6060
cp $(BLE_FILES) Arduino/ESP32_BLE/src
6161
cp Arduino_ESP32_BLE.library.properties Arduino/ESP32_BLE/library.properties
6262
mkdir -p Arduino/ESP32_BLE/examples
63-
cp tests/BLE\ Tests/Arduino/* Arduino/ESP32_BLE/examples
63+
cp --recursive tests/BLETests/Arduino Arduino/ESP32_BLE/examples
6464
rm -f Arduino/ESP32_BLE.zip
6565
cd Arduino; zip -r ESP32_BLE.zip ESP32_BLE
6666
rm -rf Arduino/ESP32_BLE
67+
@echo "---------------------------------------"
68+
@echo "ESP32_BLE.zip Arduino library now built"

0 commit comments

Comments
 (0)
0