Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

src/ConfigurationHandler/ConfigurationHandler.h

Committer:
jmarkel44
Date:
2016-09-01
Revision:
1:057d8fc6cb2f
Parent:
0:65cfa4873284
Child:
2:da28f21b72a1

File content as of revision 1:057d8fc6cb2f:

/******************************************************************************
 * 
 * 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            controlFile[32];
    unsigned int    reserved;               // for future use 
} Args_t;

#if 0 
typedef struct Tcb_tag {
    Thread  *t;
    Args_t  *args;
} Tcb_t;
#endif 

#endif