changes
This commit is contained in:
26
sketch/configuration.h
Normal file
26
sketch/configuration.h
Normal file
@ -0,0 +1,26 @@
|
||||
#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_
|
Reference in New Issue
Block a user