vr1.1
Dependencies: FreescaleIAP mbed-rtos mbed
Fork of CDMS_RTOS_v1_1 by
HK_CDMS.h@16:7428828a5da2, 2015-07-17 (annotated)
- Committer:
- cholletisaik777
- Date:
- Fri Jul 17 06:35:40 2015 +0000
- Revision:
- 16:7428828a5da2
- Parent:
- 11:d6dc9074075b
COM INTEGRATION
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
cholletisaik777 | 8:607ae92fa6af | 1 | #define tstart -40 |
cholletisaik777 | 8:607ae92fa6af | 2 | #define tstep 8 |
cholletisaik777 | 8:607ae92fa6af | 3 | #define tstep_thermistor 8 |
cholletisaik777 | 8:607ae92fa6af | 4 | #define tstart_thermistor -40 |
cholletisaik777 | 8:607ae92fa6af | 5 | |
cholletisaik777 | 8:607ae92fa6af | 6 | |
cholletisaik777 | 8:607ae92fa6af | 7 | typedef struct Sensor_Data |
cholletisaik777 | 8:607ae92fa6af | 8 | { |
cholletisaik777 | 8:607ae92fa6af | 9 | |
cholletisaik777 | 8:607ae92fa6af | 10 | float l_Temperature_sensor[2]; |
cholletisaik777 | 8:607ae92fa6af | 11 | float l_Temperature_thermistor[4]; //read by thermistors on solar panels |
cholletisaik777 | 8:607ae92fa6af | 12 | float l_Payload_voltage[9]; //for payload analog signals |
cholletisaik777 | 8:607ae92fa6af | 13 | |
cholletisaik777 | 8:607ae92fa6af | 14 | } Sensor_Data; |
cholletisaik777 | 8:607ae92fa6af | 15 | |
cholletisaik777 | 8:607ae92fa6af | 16 | typedef struct Sensor_Data_Quantised |
cholletisaik777 | 8:607ae92fa6af | 17 | { |
cholletisaik777 | 8:607ae92fa6af | 18 | char l_Temperature_sensor[1]; |
cholletisaik777 | 8:607ae92fa6af | 19 | char l_Temperature_thermistor[2]; |
cholletisaik777 | 8:607ae92fa6af | 20 | char l_Payload_voltage[5]; |
cholletisaik777 | 8:607ae92fa6af | 21 | |
cholletisaik777 | 11:d6dc9074075b | 22 | } Sensor_Data_Quantised; |
cholletisaik777 | 11:d6dc9074075b | 23 | |
cholletisaik777 | 11:d6dc9074075b | 24 | extern uint64_t all_flags; |