We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d540d10 commit 94b188eCopy full SHA for 94b188e
Firmware/RTK_Everywhere/Patch/BleSerial.cpp
@@ -164,8 +164,7 @@ void BleSerial::onWrite(BLECharacteristic *pCharacteristic)
164
{
165
if (pCharacteristic->getUUID().toString() == BLE_RX_UUID)
166
167
- String value = pCharacteristic->getValue();
168
-
+ String value = pCharacteristic->getValue().c_str();
169
for (int i = 0; i < value.length(); i++)
170
receiveBuffer.add(value[i]);
171
}
0 commit comments