terminal: increase history

This commit is contained in:
King Kévin 2018-02-06 17:25:53 +01:00
parent 678d56aa68
commit 36e28c873f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ char* terminal_prefix = NULL;
void (*terminal_process)(char* line) = NULL;
/** buffer to store user input and keep history */
static char terminal_buffer[16] = {0};
static char terminal_buffer[1024] = {0};
/** how much of the buffer is user */
static uint16_t terminal_end = 0;
/** current position in the buffer */