Skip to content

Commit

Permalink
Reduce the buffer and queue sizes
Browse files Browse the repository at this point in the history
2048 was leading to instability.
  • Loading branch information
snh authored Dec 16, 2021
1 parent fd68427 commit cac5eb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
const int pin_led_tx = 13;

// TODO: Reset
#define CONFIG_UART_BUFFER_SIZE 2048
#define CONFIG_QUEUE_SIZE 2048
#define CONFIG_UART_BUFFER_SIZE 1536
#define CONFIG_QUEUE_SIZE 1536
#define CONFIG_QUEUE_MAX_LENGTH 250

#define EEPROM_SIZE 4096
Expand Down

0 comments on commit cac5eb4

Please sign in to comment.