1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-04 11:02:19 +01:00

Optimize Bluetooth proxy batching and increase scan buffer capacity

This commit is contained in:
J. Nick Koston
2025-07-05 07:23:31 -05:00
parent 4e9e48e2e7
commit bc33b44648
2 changed files with 3 additions and 3 deletions

View File

@@ -26,9 +26,9 @@ namespace esp32_ble {
// Maximum number of BLE scan results to buffer
#ifdef USE_PSRAM
static constexpr uint8_t SCAN_RESULT_BUFFER_SIZE = 32;
static constexpr uint8_t SCAN_RESULT_BUFFER_SIZE = 36;
#else
static constexpr uint8_t SCAN_RESULT_BUFFER_SIZE = 20;
static constexpr uint8_t SCAN_RESULT_BUFFER_SIZE = 24;
#endif
// Maximum size of the BLE event queue - must be power of 2 for lock-free queue