Skip to content

Commit

Permalink
set MTU to 515 for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
eMadman committed Mar 15, 2024
1 parent 1fe42ba commit fd0bf94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BLE_Setup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
void setupBLE() { // Common BLE setup for both client and server
SS2K_LOG(BLE_SETUP_LOG_TAG, "Starting Arduino BLE Client application...");
BLEDevice::init(userConfig->getDeviceName());
BLEDevice::setMTU(BLE_ATT_MTU_MAX);
BLEDevice::setMTU(515);
FTMSWrite = "";
spinBLEClient.start();
startBLEServer();
Expand Down

0 comments on commit fd0bf94

Please sign in to comment.