Make default SerialBT FIFO 1K (#3032)

BT SPP doesn't have backoff and we can receive long
messages.  If there's not enough memory to store them
then they will be truncated.

Increase the default space to 1K to help avoid this issue.
This commit was merged in pull request #3032.
This commit is contained in:
Earle F. Philhower, III
2025-07-09 13:37:33 -07:00
committed by GitHub
parent 2124367f34
commit 49ada3418f
+1 -1
View File
@@ -79,7 +79,7 @@ private:
// Lockless, IRQ-handled circular queue
uint32_t _writer;
uint32_t _reader;
size_t _fifoSize = 32;
size_t _fifoSize = 1024;
uint8_t *_queue;
const int RFCOMM_SERVER_CHANNEL = 1;