Erick / Mbed 2 deprecated ICE_BLE_TEST

Dependencies:   NaturalTinyShell_ice libmDot-12Sept mbed-rtos mbed

Fork of ICE by Erick

Committer:
jmarkel44
Date:
Thu Oct 06 15:36:26 2016 +0000
Revision:
192:052a419837fa
Parent:
185:5ac6ab1ed875
inclusion of .hasMember

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jmarkel44 48:1c7861d80d16 1 #ifndef OUTPUTTASK_H
jmarkel44 48:1c7861d80d16 2 #define OUTPUTTASK_H
jmarkel44 48:1c7861d80d16 3
jmarkel44 74:03ccf04998b5 4 #include <string>
jmarkel44 74:03ccf04998b5 5 #include <stdio.h>
jmarkel44 115:1558e01d04c6 6 #include "global.h"
jmarkel44 74:03ccf04998b5 7
jmarkel44 192:052a419837fa 8 typedef enum {
jmarkel44 192:052a419837fa 9 CONTROL_OFF = 0,
jmarkel44 192:052a419837fa 10 CONTROL_ON = 1
jmarkel44 192:052a419837fa 11 } ControlState;
jmarkel44 192:052a419837fa 12
jmarkel44 48:1c7861d80d16 13 void OutputTask(void const *args);
jmarkel44 66:db1425574b58 14 void DisplayOutputs(void);
jmarkel44 48:1c7861d80d16 15
jmarkel44 67:49f266601d83 16 #define OUTPUT_STR "output"
jmarkel44 67:49f266601d83 17
jmarkel44 48:1c7861d80d16 18 #endif