versadac  1
versadac - Scalable Recorder Firmware
stdhead.h
1 #ifndef STDHEAD_H
2 #define STDHEAD_H
3 /*****************************************************************************
4 * Copyright (c) 2001 Eurotherm Controls Ltd.
5 *
6 * FILENAME : stdhead.h
7 * AUTHOR : Paul Sayers / Richard Hine / joe cottam / all at EDEN
8 * CREATED : November, 2001
9 * DESCRIPTION : Things that MUST be defined for every target
10 *****************************************************************************/
11 #include "stdtypes.h"
12 #include "target.h"
13 #include "defs.h"
14 /*AJC use this to generate a build with everything enabled*/
15 /*#define ALL_AVAIL*/
16 // pull in the common beacon definition
17 //#include "beacons.h"
18 #define MODE_RUN 0x0000
19 #define MODE_INIT 0x0001
20 #define MODE_REINIT 0x0002
21 #define MODE_STANDBY 0x0004
22 #define MODE_STRATHOLD 0x0008
23 #define MODE_PRESTRAT 0x0010
24 #define MODE_POSTSTRAT 0x0020
25 #define MODE_STARTUP 0x0040
26 #define MODE_TELEMETRY 0x0080
27 
28 #define ABSOLUTE_ZERO -273.15
29 
30 
31 #endif //STDHEAD_H