blk_box_tc/main/drivers/nvs.h
2025-08-22 15:05:11 -05:00

13 lines
200 B
C

#ifndef NVS_H
#define NVS_H
#include "nvs_flash.h"
#include "hwdata.h"
/// @brief Initializes the NVS.
bool init_nvs();
/// Gets the HWData stored in NVS.
HWData& get_hw_data();
#endif /* NVS_H */