mirror of https://github.com/ARMmbed/mbed-os.git
Revert max line length change
Do not chnage default line length as it is a breaking chnage. Library configuration can be used to adjust max lien length.pull/13443/head
parent
3ce9f34147
commit
d3fc6c4563
|
@ -42,7 +42,7 @@
|
||||||
"value": null
|
"value": null
|
||||||
},
|
},
|
||||||
"max_line_length": {
|
"max_line_length": {
|
||||||
"help": "maximum input line length. Defaults to 200 when not set",
|
"help": "maximum input line length. Defaults to 2000 when not set",
|
||||||
"value": null
|
"value": null
|
||||||
},
|
},
|
||||||
"args_max_count": {
|
"args_max_count": {
|
||||||
|
|
|
@ -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 200
|
#define MBED_CONF_CMDLINE_MAX_LINE_LENGTH 2000
|
||||||
#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
|
||||||
|
|
Loading…
Reference in New Issue