Skip to content

Commit d3fc6c4

Browse files
author
Arto Kinnunen
committed
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.
1 parent 3ce9f34 commit d3fc6c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

features/frameworks/mbed-client-cli/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"value": null
4343
},
4444
"max_line_length": {
45-
"help": "maximum input line length. Defaults to 200 when not set",
45+
"help": "maximum input line length. Defaults to 2000 when not set",
4646
"value": null
4747
},
4848
"args_max_count": {

features/frameworks/mbed-client-cli/source/ns_cmdline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
#endif
216216
// Maximum length of input line
217217
#ifndef MBED_CONF_CMDLINE_MAX_LINE_LENGTH
218-
#define MBED_CONF_CMDLINE_MAX_LINE_LENGTH 200
218+
#define MBED_CONF_CMDLINE_MAX_LINE_LENGTH 2000
219219
#endif
220220
// Maximum number of arguments in a single command
221221
#ifndef MBED_CONF_CMDLINE_ARGS_MAX_COUNT

0 commit comments

Comments
 (0)