Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

Committer:
jmarkel44
Date:
Thu Sep 01 18:57:04 2016 +0000
Revision:
0:65cfa4873284
Child:
1:057d8fc6cb2f
Base version (threading + messaging based on mbed 5.0);

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jmarkel44 0:65cfa4873284 1 #include <stdio.h>
jmarkel44 0:65cfa4873284 2
jmarkel44 0:65cfa4873284 3 /*****************************************************************************
jmarkel44 0:65cfa4873284 4 * Function: SetpointControl
jmarkel44 0:65cfa4873284 5 * Description: entry point for a Setpoint control thread
jmarkel44 0:65cfa4873284 6 *
jmarkel44 0:65cfa4873284 7 * @param (IN) args (user-defined arguments)
jmarkel44 0:65cfa4873284 8 * @return none
jmarkel44 0:65cfa4873284 9 *****************************************************************************/
jmarkel44 0:65cfa4873284 10 void SetpointControl(void const *args)
jmarkel44 0:65cfa4873284 11 {
jmarkel44 0:65cfa4873284 12 printf("\r%s created\n", __func__);
jmarkel44 0:65cfa4873284 13
jmarkel44 0:65cfa4873284 14 while (true ) {
jmarkel44 0:65cfa4873284 15 }
jmarkel44 0:65cfa4873284 16 }