N4 Flight Software N4
Flight software used for the N4 flight computers
Loading...
Searching...
No Matches
system_log_levels.h
Go to the documentation of this file.
1
12
13#ifndef SYSTEM_LOG_LEVELS_H
14#define SYSTEM_LOG_LEVELS_H
15
16typedef enum{
17 DEBUG = 0,
18 INFO,
19 WARNING,
20 CRITICAL,
21 ERROR
22} LOG_LEVEL;
23
24typedef enum {
25 WRITE = 0,
26 APPEND
27} LOG_MODE;
28
29#endif