FACT++  1.0
HeadersSQM.h
Go to the documentation of this file.
1 #ifndef FACT_HeadersSQM
2 #define FACT_HeadersSQM
3 
4 namespace SQM
5 {
6  namespace State
7  {
8  enum states_t
9  {
14  };
15  };
16 
17  struct Data
18  {
19  float mag; // Magnitude per square arc second (0.00m upper brightness limit)
20  uint32_t freq; // Frequency of sensor in Hz
21  uint32_t counts; // Period of sensor in counts (counts occur at 14.7456MHz/32)
22  float period; // Period of sensor in seconds (millisecond resolution)
23  float temp; // Temperature measured at light sensor in degC
24  } __attribute__((__packed__));
25 
26 };
27 #endif
uint32_t counts
Definition: HeadersSQM.h:21
Definition: HeadersSQM.h:4
float period
Definition: HeadersSQM.h:22
float mag
Definition: HeadersSQM.h:19
enum SQM::State::states_t __attribute__
float temp
Definition: HeadersSQM.h:23
uint32_t freq
Definition: HeadersSQM.h:20