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: CMDB EthernetInterface HTTPD dconfig mbed-rpc mbed-rtos mbed storage_on_flash
console.h@2:d7ffadba49b9, 2015-06-17 (annotated)
- 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?
| User | Revision | Line number | New 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 |