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

Last change on this file since 19430 was 18505, checked in by tbretz, 8 years ago
Added cloud base hieght (CLB)
File size: 587 bytes
Line 
1#ifndef FACT_HeadersMagicLidar
2#define FACT_HeadersMagicLidar
3
4namespace MagicLidar
5{
6 namespace State
7 {
8 enum states_t
9 {
10 kDisconnected = 1,
11 kConnected,
12 kReceiving,
13 };
14 }
15
16 struct DimLidar
17 {
18 DimLidar() { memset(this, 0, sizeof(DimLidar)); }
19
20 float fZd;
21 float fAz;
22 //float fCHE;
23 //float fCOT;
24 //float fPBL;
25
26 float fT3;
27 float fT6;
28 float fT9;
29 float fT12;
30
31 float fCloudBaseHeight;
32
33 } __attribute__((__packed__));
34}
35
36#endif
Note: See TracBrowser for help on using the repository browser.