Merge pull request #1174 from keyboardio/model100/eeprom-resize

Model100: Increase the default EEPROM size from 4k to 16k
pull/1178/head
Jesse Vincent 3 years ago committed by GitHub
commit d3daeb5062
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,10 +19,6 @@
#ifdef ARDUINO_keyboardio_model_100 #ifdef ARDUINO_keyboardio_model_100
#ifndef EEPROM_EMULATION_SIZE
#define EEPROM_EMULATION_SIZE 4096
#endif
#include <Arduino.h> #include <Arduino.h>
#define CRGB(r, g, b) \ #define CRGB(r, g, b) \
@ -51,7 +47,7 @@ namespace device {
namespace keyboardio { namespace keyboardio {
struct Model100StorageProps : public kaleidoscope::driver::storage::GD32FlashProps { struct Model100StorageProps : public kaleidoscope::driver::storage::GD32FlashProps {
static constexpr uint16_t length = EEPROM_EMULATION_SIZE; static constexpr uint16_t length = 16384;
}; };

Loading…
Cancel
Save