Fix #10: Moved static and global variablöes that are 0 initialized to CCMRAM in order to make room and increase performance.

This commit is contained in:
2020-08-18 19:57:13 +02:00
parent 64ef7b4a3c
commit 60e990632b
9 changed files with 25 additions and 21 deletions

View File

@@ -45,7 +45,7 @@
extern struct stm_uart shell_uart;
static shellmatta_instance_t shell;
static char shell_buffer[512];
static char history_buffer[600];
static char IN_SECTION(.ccmram) history_buffer[600];
static shellmatta_retCode_t shell_cmd_ver(const shellmatta_handle_t handle,
const char *arguments,