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
src/ConfigurationHandler/ConfigurationHandler.cpp@3:8ea4db957749, 2016-09-06 (annotated)
- Committer:
- jmarkel44
- Date:
- Tue Sep 06 17:51:37 2016 +0000
- Revision:
- 3:8ea4db957749
- Parent:
- 2:da28f21b72a1
- Child:
- 5:5e77a1db4d45
Base version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jmarkel44 | 0:65cfa4873284 | 1 | /****************************************************************************** |
jmarkel44 | 0:65cfa4873284 | 2 | * |
jmarkel44 | 0:65cfa4873284 | 3 | * File: ConfigurationHandler.cpp |
jmarkel44 | 0:65cfa4873284 | 4 | * Desciption: source for the ICE Configuration Handler |
jmarkel44 | 0:65cfa4873284 | 5 | * |
jmarkel44 | 0:65cfa4873284 | 6 | *****************************************************************************/ |
jmarkel44 | 3:8ea4db957749 | 7 | #include "ConfigurationHandler.h" |
jmarkel44 | 0:65cfa4873284 | 8 | #include "global.h" |
jmarkel44 | 0:65cfa4873284 | 9 | |
jmarkel44 | 0:65cfa4873284 | 10 | void ConfigurationHandler(void const *args) |
jmarkel44 | 0:65cfa4873284 | 11 | { |
jmarkel44 | 3:8ea4db957749 | 12 | //loadPersistentControls() |
jmarkel44 | 0:65cfa4873284 | 13 | osSignalSet(mainThreadId, sig_continue); |
jmarkel44 | 1:057d8fc6cb2f | 14 | |
jmarkel44 | 3:8ea4db957749 | 15 | while ( true ) { |
jmarkel44 | 3:8ea4db957749 | 16 | // do stuff |
jmarkel44 | 0:65cfa4873284 | 17 | } |
jmarkel44 | 0:65cfa4873284 | 18 | } |