Files @ 74b1bacb8466
Branch filter:

Location: therm/flash.h - annotation

Ethan Zonca
Default to decent settings
#ifndef FLASH_H
#define FLASH_H

#include "states.h"

#define PAGE_SIZE ((uint16_t)0x400)
#define END_ADDR 0x08007FFF

void flash_save(therm_settings_t* tosave);
void flash_restore(therm_settings_t *tosave);
void flash_erase(void);

#endif