Skip to content

Commit 9bedbd1

Browse files
committed
data_structures.cpp renamed to data_structures.h
1 parent f36dbc7 commit 9bedbd1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

data_structures.h

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#ifndef DATA_STRUCTURES_CPP
2+
#define DATA_STRUCTURES_CPP
3+
struct fire_data {
4+
uint16_t block_id;
5+
double azimuth;
6+
double dist[32];
7+
double intensity[32];
8+
};
9+
10+
struct data_packet {
11+
uint8_t header[42];
12+
fire_data payload[12];
13+
uint8_t footer[6];
14+
};
15+
#endif

0 commit comments

Comments
 (0)