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/main.cpp
- Revision:
- 30:738359dfdab1
- Parent:
- 21:85c69494c0ff
- Child:
- 32:79ec3a4c0ec5
--- a/src/main.cpp Thu Sep 08 20:20:21 2016 +0000 +++ b/src/main.cpp Thu Sep 08 21:07:47 2016 +0000 @@ -78,7 +78,7 @@ printf("\rMultiTech mDot library version: %s\n", dot->getId().c_str()); // start the configuration handler - Thread configHandler_thread(ConfigurationHandler); + Thread configHandler_thread(ConfigurationHandler, 0, osPriorityNormal, 3000, NULL); Thread controlTask_thread(ControlTask); // wait for the configuration handler to signal us @@ -89,7 +89,7 @@ Thread anaylticsLogger_thread(AnalyticsLogger); Thread modbusMaster_thread(ModbusMaster); Thread BLE_thread(BLEDataHandler); - Thread CDH_thread(CloudDataHandler); + Thread CDH_thread(CloudDataHandler, 0, osPriorityNormal, 3000, NULL); Thread::wait(1000);