14 lines
231 B
C
14 lines
231 B
C
#ifndef NVS_H
|
|
#define NVS_H
|
|
|
|
#include "nvs_flash.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "hwdata.h"
|
|
|
|
/// @brief Initializes the NVS.
|
|
bool init_nvs();
|
|
|
|
/// Gets the HWData stored in NVS.
|
|
HWData& get_hw_data();
|
|
|
|
#endif /* NVS_H */ |