ESP-Miner/main/nvs_device.h

13 lines
310 B
C
Raw Permalink Normal View History

#ifndef MAIN_NVS_DEVICE_H
#define MAIN_NVS_DEVICE_H
#include <stdbool.h>
#include "esp_err.h"
#include "global_state.h"
esp_err_t NVSDevice_init(void);
esp_err_t NVSDevice_parse_config(GlobalState *);
esp_err_t NVSDevice_get_wifi_creds(GlobalState *, char **, char **, char **);
#endif // MAIN_NVS_DEVICE_H