* BLE_WRITE_MIN_INTERVAL upped to 60 millis

This commit is contained in:
Scott Powell
2025-05-17 19:54:31 +10:00
parent b11f43987b
commit 436a99f088
2 changed files with 2 additions and 2 deletions

View File

@@ -169,7 +169,7 @@ size_t SerialBLEInterface::writeFrame(const uint8_t src[], size_t len) {
return 0;
}
#define BLE_WRITE_MIN_INTERVAL 20
#define BLE_WRITE_MIN_INTERVAL 60
bool SerialBLEInterface::isWriteBusy() const {
return millis() < _last_write + BLE_WRITE_MIN_INTERVAL; // still too soon to start another write?