Skip to content

Commit

Permalink
Merge pull request #534 from doudar/ConfigApp
Browse files Browse the repository at this point in the history
set MTU to 515 for Android
  • Loading branch information
eMadman authored Mar 15, 2024
2 parents 4339bdf + 3affcd4 commit 098e99a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed a bug with Trainer Day and rapid ERG sending.
- Many updates and bug fixes which enable the Config App to communicate with SmartSpin2k.
- Scanned devices no longer saved to filesystem. The new scanning method would keep snowballing them otherwise.
- increased MTU for android

### Hardware
- added Yesoul S3
Expand Down
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 098e99a

Please sign in to comment.