From 6d9ceae8eab62ba33011a82c8fad8e55d37fe7ba Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Sat, 26 Aug 2017 16:48:25 -0600 Subject: Added eeprom load/save API (no wear levelling yet), verified it works in DarkHorse. --- spaghetti-monster/fsm-eeprom.h | 58 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 spaghetti-monster/fsm-eeprom.h (limited to 'spaghetti-monster/fsm-eeprom.h') diff --git a/spaghetti-monster/fsm-eeprom.h b/spaghetti-monster/fsm-eeprom.h new file mode 100644 index 0000000..3d34f23 --- /dev/null +++ b/spaghetti-monster/fsm-eeprom.h @@ -0,0 +1,58 @@ +/* + * fsm-eeprom.h: EEPROM API for SpaghettiMonster. + * + * Copyright (C) 2017 Selene ToyKeeper + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef FSM_EEPROM_H +#define FSM_EEPROM_H + +#include + +// set this higher to enable normal eeprom functions +#ifndef EEPROM_BYTES +#define EEPROM_BYTES 0 +#endif + +// set this higher to enable wear-levelled eeprom functions +#ifndef EEPROM_WL_BYTES +#define EEPROM_WL_BYTES 0 +#endif + +#if EEPROM_BYTES > 0 +uint8_t eeprom[EEPROM_BYTES]; +uint8_t load_eeprom(); // returns 1 for success, 0 for no data found +void save_eeprom(); +#define EEP_START (EEPSIZE/2) +#endif + +#if EEPROM_WL_BYTES > 0 +uint8_t eeprom_wl[EEPROM_WL_BYTES]; +uint8_t load_wl_eeprom(); // returns 1 for success, 0 for no data found +void save_wl_eeprom(); +#define EEP_WL_SIZE (EEPSIZE/2) +#endif + +#if EEPSIZE > 256 +#define EEP_OFFSET_T uint16_t +#else +#define EEP_OFFSET_T uint8_t +#endif + +// if this marker isn't found, the eeprom is assumed to be blank +#define EEP_MARKER 0b10100101 + +#endif -- cgit v1.2.3 From 2370e0a3ce0a3ab928ac19af074a3ef67d533ca6 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Sat, 26 Aug 2017 17:12:31 -0600 Subject: Made wear-levelling work. Takes a bunch of extra ROM though. Also, I've only tested it a tiny amount. --- spaghetti-monster/fsm-eeprom.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'spaghetti-monster/fsm-eeprom.h') diff --git a/spaghetti-monster/fsm-eeprom.h b/spaghetti-monster/fsm-eeprom.h index 3d34f23..c35c822 100644 --- a/spaghetti-monster/fsm-eeprom.h +++ b/spaghetti-monster/fsm-eeprom.h @@ -33,6 +33,9 @@ #endif #if EEPROM_BYTES > 0 +#if EEPROM_BYTES >= (EEPSIZE/2) +#error Requested EEPROM_BYTES too big. +#endif uint8_t eeprom[EEPROM_BYTES]; uint8_t load_eeprom(); // returns 1 for success, 0 for no data found void save_eeprom(); @@ -40,6 +43,9 @@ void save_eeprom(); #endif #if EEPROM_WL_BYTES > 0 +#if EEPROM_WL_BYTES >= (EEPSIZE/4) +#error Requested EEPROM_WL_BYTES too big. +#endif uint8_t eeprom_wl[EEPROM_WL_BYTES]; uint8_t load_wl_eeprom(); // returns 1 for success, 0 for no data found void save_wl_eeprom(); -- cgit v1.2.3 From 976c5724bf0a3ddbe6d4b385841a0a5bf38f4b25 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Fri, 29 Sep 2017 17:31:10 -0600 Subject: Added option to start at memorized level, for momentary use on dual-switch lights. Renamed WL versions of eeprom functions, for naming consistency. --- spaghetti-monster/fsm-eeprom.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spaghetti-monster/fsm-eeprom.h') diff --git a/spaghetti-monster/fsm-eeprom.h b/spaghetti-monster/fsm-eeprom.h index c35c822..b6e1aea 100644 --- a/spaghetti-monster/fsm-eeprom.h +++ b/spaghetti-monster/fsm-eeprom.h @@ -47,8 +47,8 @@ void save_eeprom(); #error Requested EEPROM_WL_BYTES too big. #endif uint8_t eeprom_wl[EEPROM_WL_BYTES]; -uint8_t load_wl_eeprom(); // returns 1 for success, 0 for no data found -void save_wl_eeprom(); +uint8_t load_eeprom_wl(); // returns 1 for success, 0 for no data found +void save_eeprom_wl(); #define EEP_WL_SIZE (EEPSIZE/2) #endif -- cgit v1.2.3 From 9fbfa14e63a6b7f8e495ca4cf1f7b82c2e638215 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Sun, 3 Dec 2017 17:22:01 -0700 Subject: Made it possible to override address of eeprom array in RAM. (useful when trying to use a single large data structure without wasting twice its size in RAM) --- spaghetti-monster/fsm-eeprom.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'spaghetti-monster/fsm-eeprom.h') diff --git a/spaghetti-monster/fsm-eeprom.h b/spaghetti-monster/fsm-eeprom.h index b6e1aea..a668588 100644 --- a/spaghetti-monster/fsm-eeprom.h +++ b/spaghetti-monster/fsm-eeprom.h @@ -36,7 +36,11 @@ #if EEPROM_BYTES >= (EEPSIZE/2) #error Requested EEPROM_BYTES too big. #endif +#ifdef EEPROM_OVERRIDE +uint8_t *eeprom; +#else uint8_t eeprom[EEPROM_BYTES]; +#endif uint8_t load_eeprom(); // returns 1 for success, 0 for no data found void save_eeprom(); #define EEP_START (EEPSIZE/2) -- cgit v1.2.3