IO Firmware: Reduce unnecessary buffer space

This commit is contained in:
Lorenz Meier
2016-01-26 14:52:39 +01:00
committed by Andreas Antener
parent b54a0308a7
commit f2af8a5a5d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -418,7 +418,7 @@ mixer_callback(uintptr_t handle,
* not loaded faithfully.
*/
static char mixer_text[256]; /* large enough for one mixer */
static char mixer_text[200]; /* large enough for one mixer */
static unsigned mixer_text_length = 0;
int
+1 -1
View File
@@ -82,7 +82,7 @@ static volatile uint8_t msg_next_out, msg_next_in;
* for mixer handling. Do not allocate more than 80 bytes for
* output.
*/
#define NUM_MSG 2
#define NUM_MSG 1
static char msg[NUM_MSG][40];
static void heartbeat_blink(void);