Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

Revision:
171:fb29030d4eaf
Parent:
170:f9406996ff5b
Child:
172:51dfb4aabc57
diff -r f9406996ff5b -r fb29030d4eaf src/main.cpp
--- 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);