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.h
- Committer:
- jmarkel44
- Date:
- 2016-09-01
- Revision:
- 0:65cfa4873284
- Child:
- 1:057d8fc6cb2f
File content as of revision 0:65cfa4873284:
/****************************************************************************** * * File: ConfigurationHandler.h * Desciption: interface file for the ICE Configuration Handler * *****************************************************************************/ #ifndef CONFIGURATION_HANDLER_H #define CONFIGURATION_HANDLER_H void ConfigurationHandler(void const *args); void ConfigurationHandler_DisplayThreads(void); extern void TimerControl(void const *args); extern void ManualControl(void const *args); extern void SetpointControl(void const *args); extern void CompositeControl(void const *args); extern void PIDControl(void const *args); typedef struct args_t { char filename[32]; unsigned int reserved; } Args_t; typedef struct Tcb_tag { Thread *t; Args_t args; } Tcb_t; #endif