Skip to content

Commit 15d6b24

Browse files
committed
✏️ Update typos and docs
1 parent 042e31f commit 15d6b24

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/platformio-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
-std=gnu++11
9090
PLATFORMIO_BUILD_FLAGS: |
9191
-std=gnu++17
92-
-D BLESERIAL_USE_NIMBLE=${{ matrix.nimble != false}}
92+
-D BLESERIAL_USE_NIMBLE=${{ matrix.nimble != false }}
9393
-Wall
9494
-Wextra
9595
-Wpedantic

examples/SerialToSerialBLE/SerialToSerialBLE.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
String device_name = "ESP32-BLE-Slave";
99

1010
BLESerial SerialBLE;
11-
// If you are using older version of Arduino IDE, you may need to use
12-
// empty template argument (<>), due to the old C++ compiler version (<=std=c++17).
11+
// If you are using an older version of Arduino IDE or C++ compiler, you may need to use
12+
// an empty template argument (<>), as Class Template Argument Deduction (CTAD) is not
13+
// supported in C++ versions older than C++17. For more details, see:
1314
// https://www.cppreference.com/w/cpp/language/ctad.html
1415
//
1516
// Uncomment the line below if you are using an older version of Arduino IDE/C++ compiler

examples/SerialToSerialBLE_TransparentUART-NimBLE/SerialToSerialBLE_TransparentUART-NimBLE.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
// #include <etl/circular_buffer.h>
77

88
BLESerial SerialBLE;
9-
// If you are using older version of Arduino IDE, you may need to use
10-
// empty template argument (<>), due to the old C++ compiler version (<=std=c++17).
9+
// If you are using an older version of Arduino IDE or C++ compiler, you may need to use
10+
// an empty template argument (<>), as Class Template Argument Deduction (CTAD) is not
11+
// supported in C++ versions older than C++17. For more details, see:
1112
// https://www.cppreference.com/w/cpp/language/ctad.html
1213
//
1314
// Uncomment the line below if you are using an older version of Arduino IDE/C++ compiler

examples/SerialToSerialBLE_TransparentUART/SerialToSerialBLE_TransparentUART.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
// #include <etl/circular_buffer.h>
77

88
BLESerial SerialBLE;
9-
// If you are using older version of Arduino IDE, you may need to use
10-
// empty template argument (<>), due to the old C++ compiler version (<=std=c++17).
9+
// If you are using an older version of Arduino IDE or C++ compiler, you may need to use
10+
// an empty template argument (<>), as Class Template Argument Deduction (CTAD) is not
11+
// supported in C++ versions older than C++17. For more details, see:
1112
// https://www.cppreference.com/w/cpp/language/ctad.html
1213
//
1314
// Uncomment the line below if you are using an older version of Arduino IDE/C++ compiler

0 commit comments

Comments
 (0)