Files @ 24d49dea991a
Branch filter:

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

Ethan Zonca
Add runtime modes and seperate squeezy triggers
#ifndef _FLASH_H
#define _FLASH_H

typedef enum __runtime
{
    RUNTIME_BUCKET = 0,
    RUNTIME_STRIPDRIVE,

    RUNTIME_MAX
} runtime_t;

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

#endif