mbed_controller / Mbed 2 deprecated mbed_controller_demo

Dependencies:   CMDB EthernetInterface HTTPD dconfig mbed-rpc mbed-rtos mbed storage_on_flash

Committer:
hillkim7
Date:
Wed Jun 17 01:55:19 2015 +0000
Revision:
2:d7ffadba49b9
Parent:
0:2ffd10976643
Fix stack overflow problem of the console task.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hillkim7 0:2ffd10976643 1 /*
hillkim7 0:2ffd10976643 2 * @file console.h
hillkim7 0:2ffd10976643 3 *
hillkim7 0:2ffd10976643 4 * @brief console implementation
hillkim7 0:2ffd10976643 5 *
hillkim7 0:2ffd10976643 6 */
hillkim7 0:2ffd10976643 7
hillkim7 2:d7ffadba49b9 8 #define CONSOLE_STACK_SIZE (6*1024)
hillkim7 0:2ffd10976643 9
hillkim7 0:2ffd10976643 10 void console_thread(void const *args);
hillkim7 0:2ffd10976643 11
hillkim7 0:2ffd10976643 12
hillkim7 2:d7ffadba49b9 13