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:
- 171:fb29030d4eaf
- Parent:
- 170:f9406996ff5b
- Child:
- 172:51dfb4aabc57
--- a/src/main.cpp Mon Oct 03 21:57:36 2016 +0000 +++ b/src/main.cpp Tue Oct 04 12:22:13 2016 +0000 @@ -161,13 +161,13 @@ osSignalWait(sig_output_continue, osWaitForever); // start the configuration handler - Thread configHandler_thread(ConfigurationHandler, NULL, osPriorityNormal, (1024*4), NULL); + Thread configHandler_thread(ConfigurationHandler, NULL, osPriorityNormal, (1024*4 + 512), NULL); osSignalWait(sig_config_continue, osWaitForever); printf("CONFIGURATION HANDLER DONE\r\n"); // we're clear to start running the controls - Thread controlTask_thread(ControlTask, NULL, osPriorityNormal, (1024*1), NULL); + Thread controlTask_thread(ControlTask, NULL, osPriorityNormal, (1024/2), NULL); printf("\r%s:%d: continuing to initialize...\n", __func__, __LINE__); Thread BLE_thread(BLEDataHandler);