blk_box_control/main/drivers/nvs.h
2026-03-21 18:27:03 -05:00

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 */