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/Controls/SetpointControl.cpp
- Committer:
- jmarkel44
- Date:
- 2016-09-01
- Revision:
- 1:057d8fc6cb2f
- Parent:
- 0:65cfa4873284
- Child:
- 2:da28f21b72a1
File content as of revision 1:057d8fc6cb2f:
#include <stdio.h> #include "ConfigurationHandler.h" #include "rtos.h" /***************************************************************************** * Function: SetpointControl * Description: entry point for a Setpoint control thread * * @param (IN) args (user-defined arguments) * @return none *****************************************************************************/ void SetpointControl(void const *args) { Args_t *info = (Args_t *)args; while (true ) { printf("\r%s running with controlFile %s\n", __func__, info->controlFile); Thread::wait(5000); } }