Change log buffer size from 520 to 700

Change log buffer size from 520 to 700 characters accomodating full rule text (#7110)
This commit is contained in:
Theo Arends 2019-12-06 11:10:15 +01:00
parent d490b1cfea
commit 9d9f3b0ca7
2 changed files with 7 additions and 2 deletions

View File

@ -5,7 +5,12 @@
- Fix lost functionality of GPIO9 and GPIO10 on some devices (#7080)
- Fix Zigbee uses Hardware Serial if GPIO 1/3 or GPIO 13/15 and SerialLog 0 (#7071)
- Fix WS2812 power control (#7090)
- Change light color schemes 2, 3 and 4 from color wheel to Hue driven
- Change light color schemes 2, 3 and 4 from color wheel to Hue driven with user Saturation control
- Change log buffer size from 520 to 700 characters accomodating full rule text (#7110)
- Add rule var ``%topic%`` (#5522)
- Add rule triggers ``tele_power1#state`` and multiple ``tele-wifi1#xxx`` (#7093)
- Add experimental support for stepper motor shutter control
- Add optional USE_MQTT_TLS to tasmota-minimal.bin (#7115)
## Released

View File

@ -119,7 +119,7 @@ const uint16_t INPUT_BUFFER_SIZE = 520; // Max number of characters in (seri
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
const uint16_t TOPSZ = 100; // Max number of characters in topic string
const uint16_t LOGSZ = 520; // Max number of characters in log
const uint16_t LOGSZ = 700; // Max number of characters in log
const uint16_t MIN_MESSZ = 893; // Min number of characters in MQTT message
const uint8_t SENSOR_MAX_MISS = 5; // Max number of missed sensor reads before deciding it's offline