Versão limpa em 04/09/2014. Telnet funcionando.

Dependencies:   EthernetInterface mbed-rtos mbed NTPClient

Files at this revision

API Documentation at this revision

Comitter:
mlucas82
Date:
Fri Mar 27 14:56:13 2015 +0000
Branch:
feature-logs
Parent:
15:6dbc222083ad
Child:
17:2d80e3aeeea7
Commit message:
Corrected implementation of telnet command for parameter LogMarks

Changed in this revision

Codes/TelnetCommands/telnet_setparam.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/Codes/TelnetCommands/telnet_setparam.cpp	Fri Mar 27 14:48:06 2015 +0000
+++ b/Codes/TelnetCommands/telnet_setparam.cpp	Fri Mar 27 14:56:13 2015 +0000
@@ -141,7 +141,7 @@
     if(!strcmp(argv[1],"LogMarks"))
     {
         bool value = ( ( strcmp(argv[2],"true") ) || ( strcmp(argv[2],"1") ) );
-        //Settings::set_LogMarks(value);
+        Settings::set_LogMarks(value);
         Settings::WriteFile();
         return 0;
     }