Skip to content
Closed

test #39

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/en/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,8 @@ Documentation Checks
The CI also checks the documentation for any compilation errors. This is important to ensure that the documentation layout is not broken.
To build the documentation locally, please refer to the `documentation guidelines <guides/docs_contributing>`_.



Code Style Checks
^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion libraries/BLE/examples/Client/Client.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static BLEAdvertisedDevice *myDevice;
static void notifyCallback(BLERemoteCharacteristic *pBLERemoteCharacteristic, uint8_t *pData, size_t length, bool isNotify) {
Serial.print("Notify callback for characteristic ");
Serial.print(pBLERemoteCharacteristic->getUUID().toString().c_str());
Serial.print(" of data length ");
Serial.print(" of data lenght ");
Serial.println(length);
Serial.print("data: ");
Serial.write(pData, length);
Expand Down
Loading