X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=examples%2Fdevelgps%2Fhw%2Fthermo_map.h;fp=examples%2Fdevelgps%2Fhw%2Fthermo_map.h;h=0000000000000000000000000000000000000000;hb=71cf95cea1162642bdd9034ddbc0920c70de1af1;hp=4376076acc3e6d4f79a02d22e6830ae0a79e74d3;hpb=44c33872116ab2e2b96f9d919f926c4a9179d796;p=bertos.git diff --git a/examples/develgps/hw/thermo_map.h b/examples/develgps/hw/thermo_map.h deleted file mode 100644 index 4376076a..00000000 --- a/examples/develgps/hw/thermo_map.h +++ /dev/null @@ -1,70 +0,0 @@ -/** - * \file - * - * - * \brief Thermo regulation control map definitions. - * - * \version $Id$ - * - * \author Francesco Sacchi - */ - -#ifndef THERMO_MAP_H -#define THERMO_MAP_H - -#include -#include - -#warning TODO:This is an example implentation, you must implement it! - -typedef uint8_t thermostatus_t; - -#define THERMO_OFF 0 -#define THERMO_HEATING BV(0) -#define THERMO_FREEZING BV(1) -#define THERMO_TGT_REACH BV(2) -#define THERMOERRF_NTCSHORT BV(3) -#define THERMOERRF_NTCOPEN BV(4) -#define THERMOERRF_TIMEOUT BV(5) -#define THERMO_ACTIVE BV(6) - -#define THERMO_ERRMASK (THERMOERRF_NTCSHORT | THERMOERRF_NTCOPEN | THERMOERRF_TIMEOUT) - -typedef enum ThermoDev -{ - THERMO_TEST, - - /* Put here your thermo device */ - - THERMO_CNT, -} ThermoDev; - -#endif /* THERMO_MAP_H */