Decrease max line length from 2000 to 200

Decrease maximun line length from 2000 to 200 to reduce heap usage.
pull/13443/head
Arto Kinnunen 2020-08-17 16:42:00 +03:00
parent 9325f17d70
commit 3ce9f34147
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@
#endif #endif
// Maximum length of input line // Maximum length of input line
#ifndef MBED_CONF_CMDLINE_MAX_LINE_LENGTH #ifndef MBED_CONF_CMDLINE_MAX_LINE_LENGTH
#define MBED_CONF_CMDLINE_MAX_LINE_LENGTH 2000 #define MBED_CONF_CMDLINE_MAX_LINE_LENGTH 200
#endif #endif
// Maximum number of arguments in a single command // Maximum number of arguments in a single command
#ifndef MBED_CONF_CMDLINE_ARGS_MAX_COUNT #ifndef MBED_CONF_CMDLINE_ARGS_MAX_COUNT