Typical controller demo program based on Seeed Arch Max. Features: - Multi-thread architecture - Inter-thread message communication - Independent command shell using thread - HTTPD with CGI, WS, RPC - Key & value pair configuration load/save

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

Committer:
hillkim7
Date:
Fri Jul 03 11:53:23 2015 +0000
Revision:
3:df8a882e33a6
Parent:
2:d7ffadba49b9
Fix stack overflow problem in 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