N4 Flight Software N4
Flight software used for the N4 flight computers
Loading...
Searching...
No Matches
states.h
Go to the documentation of this file.
1
6#ifndef STATES_H
7#define STATES_H
8
9typedef enum {
10 PRE_FLIGHT_GROUND = 0,
11 POWERED_FLIGHT,
12 COASTING,
13 APOGEE,
14 DROGUE_DEPLOY,
15 DROGUE_DESCENT,
16 MAIN_DEPLOY,
17 MAIN_DESCENT,
18 POST_FLIGHT_GROUND
19} FLIGHT_STATE;
20
21#endif