mirror of https://github.com/arendst/Tasmota.git
Increase serial console fixed input buffer size from 520 to 800
This commit is contained in:
parent
36ed0cba7d
commit
2d15697de4
|
@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
### Changed
|
||||
- ESP32 LVGL library from v8.3.0 to v8.3.2
|
||||
- Increase serial console fixed input buffer size from 520 to 800
|
||||
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -196,8 +196,9 @@ const uint8_t OTA_ATTEMPTS = 10; // Number of times to try fetching t
|
|||
const uint8_t OTA_ATTEMPTS = 5; // Number of times to try fetching the new firmware
|
||||
#endif // ESP8266
|
||||
|
||||
const uint16_t INPUT_BUFFER_SIZE = 520; // Max number of characters in Tasmota serial command buffer
|
||||
const uint16_t MIN_INPUT_BUFFER_SIZE = 256; // Max number of characters in Tasmota serial command buffer
|
||||
//const uint16_t INPUT_BUFFER_SIZE = 520; // Max number of characters in Tasmota serial command buffer
|
||||
const uint16_t INPUT_BUFFER_SIZE = 800; // Max number of characters in Tasmota serial command buffer
|
||||
const uint16_t MIN_INPUT_BUFFER_SIZE = 256; // Max number of characters in Tasmota serial command buffer
|
||||
const uint16_t MAX_INPUT_BUFFER_SIZE = 2048; // Max number of characters in Arduino serial command buffer
|
||||
const uint16_t FLOATSZ = 16; // Max number of characters in float result from dtostrfd (max 32)
|
||||
const uint16_t CMDSZ = 24; // Max number of characters in command
|
||||
|
|
Loading…
Reference in New Issue