Skip to content

Commit c355d8d

Browse files
authored
Merge pull request #13443 from artokin/update_mbed_client_cli_v050
Update mbed-client-cli from v0.5.0
2 parents 76d51a5 + d3fc6c4 commit c355d8d

File tree

3 files changed

+491
-100
lines changed

3 files changed

+491
-100
lines changed

features/frameworks/mbed-client-cli/mbed-client-cli/ns_cmdline.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ void cmd_variable_add_int(char *variable, int value);
293293
*/
294294
void cmd_request_screen_size(void);
295295

296-
297296
/** find command parameter index by key.
298297
* e.g.
299298
* \code
Lines changed: 74 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,76 @@
11
{
2-
"name": "mbed-client-cli"
2+
"name": "cmdline",
3+
"config": {
4+
"use_minimum_set": {
5+
"help": "use pre configured minimum set which reduce most of features but allows to run icetea tests. Defaults to 'false' when not set",
6+
"accepted_values": [true, false, null],
7+
"value": null
8+
},
9+
"enable_aliases": {
10+
"help": "enable alias feature. Defaults to 'true' when not set",
11+
"accepted_values": [true, false, null],
12+
"value": null
13+
},
14+
"enable_escape_handling": {
15+
"help": "enable escape handling. Defaults to 'true' when not set",
16+
"accepted_values": [true, false, null],
17+
"value": null
18+
},
19+
"enable_operators": {
20+
"help": "enable operators. Defaults to 'true' when not set",
21+
"accepted_values": [true, false, null],
22+
"value": null
23+
},
24+
"enable_internal_commands": {
25+
"help": "enable internal commands, like echo, set, unset. Defaults to 'true' when not set",
26+
"accepted_values": [true, false, null],
27+
"value": null
28+
},
29+
"use_dummy_set_and_echo": {
30+
"help": "when enable_internal_commands is disabled this can be used to activate dummy set and echo commands that is needed for icetea tests. Defaults to 'false' when not set",
31+
"accepted_values": [true, false, null],
32+
"value": null
33+
},
34+
"enable_internal_variables": {
35+
"help": "enable internal variables. Defaults to 'true' when not set",
36+
"accepted_values": [true, false, null],
37+
"value": null
38+
},
39+
"include_man": {
40+
"help": "include man pages. Defaults to 'true' when not set",
41+
"accepted_values": [true, false, null],
42+
"value": null
43+
},
44+
"max_line_length": {
45+
"help": "maximum input line length. Defaults to 2000 when not set",
46+
"value": null
47+
},
48+
"args_max_count": {
49+
"help": "maximum arguments count. Defaults to 30 when not set",
50+
"value": null
51+
},
52+
"enable_history": {
53+
"help": "enable command history. Defaults to 'true' when not set",
54+
"accepted_values": [true, false, null],
55+
"value": null
56+
},
57+
"history_max_count": {
58+
"help": "maximum history count. Defaults to 32 when not set",
59+
"value": null
60+
},
61+
"boot_message": {
62+
"help": "Set custom boot message when calling cmd_init() or cmd_init_screen()",
63+
"value": null
64+
},
65+
"enable_internal_traces": {
66+
"help": "Enable internal traces. Defaults to 'false' when not set",
67+
"accepted_values": [true, false, null],
68+
"value": null
69+
},
70+
"enable_deep_internal_traces": {
71+
"help": "Enable more verbose internal traces. Defaults to 'false' when not set",
72+
"accepted_values": [true, false, null],
73+
"value": null
74+
}
75+
}
376
}

0 commit comments

Comments
 (0)