Saltware / Mbed 2 deprecated Water Play

Dependencies:   mbed DRV88255 TextLCD Ping mbed-rtos

Revision:
60:17e0a8e2be4a
Parent:
58:b5f0c0f305ff
Child:
65:b277b4067d4a
--- a/settings.h	Sun Jun 19 22:56:49 2016 +0000
+++ b/settings.h	Sun Jun 19 23:00:18 2016 +0000
@@ -3,14 +3,14 @@
 // This file includes the system settings for Saltware such as boot parameters
 
 
-// If defined the system runs in test mode and executes test_main() in testing.cpp
-// Else the system runs in production mode and executes real_main() in main.cpp.
+// If defined the system runs in test mode and executes testMain() in testing.cpp
+// Else the system runs in production mode and executes realMain() in main.cpp.
 #define TEST_MODE
 
 #ifdef TEST_MODE
-#define MAIN test_main
+#define MAIN testMain
 #else
-#define MAIN real_main
+#define MAIN realMain
 #endif