blob: 03e5eb82898072d1b41cce4c36befd0ee3dbe890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// (C) 2017 <>< Joshua Allen, Under MIT/x11 License.
#ifndef _SURVIVE_CONFIG_H
#define _SURVIVE_CONFIG_H
#include "survive_internal.h"
typedef enum {
CONFIG_UNKNOWN = 0,
CONFIG_FLOAT = 1,
CONFIG_UINT32 = 2,
CONFIG_STRING = 3
} cval_type;
/*
typedef union {
uint32_t i;
float f;
} Numeric;
*/
typedef struct {
char *tag;
cval_type type;
union {
uint32_t i;
float f;
} numeric;
char *str;
} config_val;
void config_open(const char* path, const char* mode);
void config_close();
void config_write_lighthouse(struct BaseStationData* bsd, uint8_t length);
#endif
|