27 lines
330 B
C
27 lines
330 B
C
#ifndef _CONFIGURATION_H_
|
|
#define _CONFIGURATION_H_
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
typedef struct config_s {
|
|
uint32_t magic;
|
|
uint8_t appEui[8];
|
|
uint8_t appKey[16];
|
|
} config_t;
|
|
|
|
|
|
|
|
void configurationSetup();
|
|
void configurationLoop();
|
|
|
|
void configLoad();
|
|
|
|
|
|
#endif // _CONFIGURATION_H_
|