From 3386db1b8097eebe00cbeeffa53511da37c5a33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Sat, 14 Mar 2026 20:05:52 +0100 Subject: [PATCH] Larger BLE packets for logging --- src/helpers/esp32/BLELogInterface.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helpers/esp32/BLELogInterface.h b/src/helpers/esp32/BLELogInterface.h index b0347dbd..db94de63 100644 --- a/src/helpers/esp32/BLELogInterface.h +++ b/src/helpers/esp32/BLELogInterface.h @@ -54,6 +54,7 @@ public: void begin(const char* device_name) { BLEDevice::init(device_name); + BLEDevice::setMTU(256); // default 23-byte MTU caps notifications at 20 bytes; request more // Explicitly disable bonding so the ESP32 does not send security requests. // Without this the BLE stack initiates Just Works pairing by default, which