ESP32_Weather/main/include/app_bkp_ram.h

12 lines
170 B
C

#ifndef APP_BKP_RAM_H
#define APP_BKP_RAM_H
#include <stdint.h>
typedef struct {
uint32_t epd_flush_count;
} app_bkp_ram_t;
extern app_bkp_ram_t g_app_bkp;
#endif