19 lines
249 B
C
19 lines
249 B
C
#ifndef __MAIN_H_
|
|
#define __MAIN_H_
|
|
|
|
#include "nvs_flash.h"
|
|
|
|
#include "esp32-lora.h"
|
|
|
|
extern uint8_t mac[6];
|
|
extern lora32_cfg_t lora;
|
|
|
|
struct lorcomm_cfg {
|
|
char *hostname;
|
|
|
|
lora32_cfg_t *lora;
|
|
nvs_handle_t nvs_handle;
|
|
} lorcomm_cfg;
|
|
|
|
|
|
#endif
|