Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed
Fork of ICE by
Diff: src/CommandParser/cmd.cpp
- Revision:
- 5:5e77a1db4d45
- Parent:
- 3:8ea4db957749
- Child:
- 11:0695c1091129
- Child:
- 12:ea87887ca7ad
diff -r 8ea4db957749 -r 5e77a1db4d45 src/CommandParser/cmd.cpp --- a/src/CommandParser/cmd.cpp Tue Sep 06 17:51:37 2016 +0000 +++ b/src/CommandParser/cmd.cpp Tue Sep 06 19:20:39 2016 +0000 @@ -153,8 +153,6 @@ void cmd_create(int argc, char **argv) { - printf("\rNot yet implemented.\n"); -#if 0 if ( argc != 3 ) { printf("\r\nusage: create [controlName] [controlType]\n"); printf("\rcontrolType-> 0=timer, 1=PID, 2=setpoint, 3=composite, 4=manual\n"); @@ -171,15 +169,11 @@ __func__, msg->controlFile, msg->control); MailBox.put(msg); -#endif return; } void cmd_destroy(int argc, char **argv) { - printf("\rNot yet implemented.\n"); - -#if 0 if ( argc != 2 ) { printf("\r\nusage: destroy [threadName]\r\n"); return; @@ -195,7 +189,6 @@ __func__, msg->controlFile); MailBox.put(msg); -#endif return; }