Merge pull request #16645 from ortegafernando/development

Software Serial buffer to MIN_INPUT_BUFFER_SIZE
This commit is contained in:
Theo Arends 2022-09-25 16:36:33 +02:00 committed by GitHub
commit 4f2a1b9c54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
#define USE_SERIAL_BRIDGE_TEE
#ifdef ESP8266
const uint16_t SERIAL_BRIDGE_BUFFER_SIZE = 130;
const uint16_t SERIAL_BRIDGE_BUFFER_SIZE = MIN_INPUT_BUFFER_SIZE;
#else
const uint16_t SERIAL_BRIDGE_BUFFER_SIZE = INPUT_BUFFER_SIZE;
#endif