barback32/include/main.h
2020-04-24 12:56:14 -07:00

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