source: trunk/FACT++/src/HeadersBiasTemp.h@ 19430

Last change on this file since 19430 was 18916, checked in by tbretz, 7 years ago
Renamed DimData to Data and moved definition to header
File size: 389 bytes
Line 
1#ifndef FACT_HeadersBiasTemp
2#define FACT_HeadersBiasTemp
3
4namespace BiasTemp
5{
6 namespace State
7 {
8 enum states_t
9 {
10 kDisconnected = 1,
11 kConnected,
12 kReceiving,
13 };
14 }
15
16 struct Data
17 {
18 uint64_t time;
19 float temp[10];
20 double avg;
21 double rms;
22 } __attribute__((__packed__));
23}
24
25#endif
Note: See TracBrowser for help on using the repository browser.