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

Last change on this file since 14868 was 14868, checked in by tbretz, 12 years ago
File size: 470 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 } __attribute__((__packed__));
27}
28
29#endif
Note: See TracBrowser for help on using the repository browser.