Skip to content
Snippets Groups Projects
Commit 05ceeec1 authored by David Sidrane's avatar David Sidrane Committed by Lorenz Meier
Browse files

piofirmware:Base the debug message buffer size on the defconfig

  Recover 16 bytes. Size of debug max message is 40 so limit
  the usart tx buffer to same size.
parent f7835a86
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ static volatile uint8_t msg_next_out, msg_next_in;
* output.
*/
#define NUM_MSG 1
static char msg[NUM_MSG][40];
static char msg[NUM_MSG][CONFIG_USART1_TXBUFSIZE];
static void heartbeat_blink(void);
static void ring_blink(void);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment