Files @ 235f584ead39
Branch filter:

Location: therm/flash.h

Ethan Zonca
More testing of flash stuff that doesn't exactly work
#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