Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

Revision:
165:9a19fa706b72
Parent:
164:7cecd731882e
Parent:
162:5e8948b8044d
Child:
166:f165ca3f67cd
--- a/src/ConfigurationHandler/ConfigurationHandler.cpp	Fri Sep 30 21:05:11 2016 +0000
+++ b/src/ConfigurationHandler/ConfigurationHandler.cpp	Fri Sep 30 21:08:22 2016 +0000
@@ -128,6 +128,7 @@
         loaded = true;
 
         for (std::vector<mDot::mdot_file>::iterator i = file_list.begin(); i != file_list.end(); ++i) {
+            printf("\rFile: %s\r\n",i->name);
             if( strncmp( i->name, CONTROL_SP_STR, strlen(CONTROL_SP_STR)) == 0 ) {
                 // create the setpoint control
                 Message_t msg;
@@ -155,9 +156,12 @@
                 // TODO: delete any timed manual control, not continuous...
                 GLOBAL_mdot->deleteUserFile(i->name);
             } else {
+                printf("\rNot A Control File%s\r\n",i->name);
                 // not a control file
             }
+            printf("\rend of loop:%s\r\n",i->name);
         }
+         printf("\rOUT OF LOOP\r\n");
     }
     return 0;
 }