From beae42e8ff314899531daf5ecb5a854e53123441 Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Mon, 11 Jun 2018 15:49:31 +0200 Subject: [PATCH] Added storage of bank and voice in EEPROM. --- MicroDexed.ino | 9 ++++++--- config.h | 4 ++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/MicroDexed.ino b/MicroDexed.ino index 3f0bb01..7e8bfd8 100644 --- a/MicroDexed.ino +++ b/MicroDexed.ino @@ -27,6 +27,7 @@ #include #include #include +#include #include "dexed.h" #include "dexed_sysex.h" #include "config.h" @@ -45,7 +46,7 @@ AudioControlSGTL5000 sgtl5000_1; //xy=507,403 MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, MIDI); Dexed* dexed = new Dexed(SAMPLE_RATE); bool sd_card_available = false; -uint8_t bank = DEFAULT_SYSEXBANK; +uint8_t bank = EEPROM.read(EEPROM_BANK_ADDR); uint32_t xrun = 0; uint32_t overload = 0; @@ -74,7 +75,7 @@ void setup() Serial.begin(SERIAL_SPEED); delay(200); Serial.println(F("MicroDexed based on https://github.com/asb2m10/dexed")); - Serial.println(F("(c)2018 H. Wirtz")); + Serial.println(F("(c)2018 H. Wirtz ")); Serial.println(F("setup start")); // start up USB host @@ -111,7 +112,7 @@ void setup() #endif // load default SYSEX data - load_sysex(bank, DEFAULT_SYSEXSOUND); + load_sysex(bank, EEPROM.read(EEPROM_VOICE_ADDR)); #ifdef DEBUG show_patch(); @@ -287,6 +288,8 @@ bool handle_master_key(uint8_t data) { Serial.print(F("Loading voice number ")); Serial.println(num, DEC); + EEPROM.write(EEPROM_VOICE_ADDR,num); + EEPROM.write(EEPROM_BANK_ADDR,bank); } } return (true); diff --git a/config.h b/config.h index c7b9c88..5fbc2d3 100644 --- a/config.h +++ b/config.h @@ -64,3 +64,7 @@ //#define SDCARD_CS_PIN BUILTIN_SDCARD //#define SDCARD_MOSI_PIN 11 // not actually used //#define SDCARD_SCK_PIN 13 // not actually used + +// EEPROM address +#define EEPROM_VOICE_ADDR 0 +#define EEPROM_BANK_ADDR 0