Update NimBLE to 1.4.2 (#4163)

This commit is contained in:
Ben Meadors
2024-06-22 08:49:55 -05:00
committed by GitHub
parent d32cdecc06
commit eb6bd3a06f
2 changed files with 2 additions and 2 deletions

View File

@@ -245,7 +245,7 @@ void NimbleBluetooth::sendLog(const char *logMessage)
if (!bleServer || !isConnected() || strlen(logMessage) > 512) {
return;
}
logRadioCharacteristic->notify((uint8_t *)logMessage, strlen(logMessage));
logRadioCharacteristic->notify(reinterpret_cast<const uint8_t *>(logMessage), strlen(logMessage));
}
void clearNVS()