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: mbed DRV88255 TextLCD Ping mbed-rtos
Diff: settings.h
- 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