Files @ aee85174089e
Branch filter:

Location: protofusion-esp32-template/main/flash.h - annotation

Ethan Zonca
Add missing files for squeeze and nv storage
1
2
3
4
5
6
7
8
#ifndef _FLASH_H
#define _FLASH_H

void flash_init(void);
void flash_write(char* key, int32_t val);
int32_t flash_read(char* key);

#endif