Remove deprecated EEPROM-Settings code

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
pull/1115/head
Michael Richters 3 years ago
parent 07f65584d2
commit f833b8f879
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -1092,6 +1092,10 @@ Second, the `Layer.eventHandler()` function has been deprecated. There wasn't mu
# Removed APIs # Removed APIs
#### `EEPROMSettings.version(uint8_t version)`
This deprecated function was removed on **2022-03-03**. The information stored is not longer intended for user code to set, but instead is used internally.
#### Model01-TestMode plugin #### Model01-TestMode plugin
This deprecated plugin was removed on **2022-03-03**. Please use the more generic HardwareTestMode plugin instead. This deprecated plugin was removed on **2022-03-03**. Please use the more generic HardwareTestMode plugin instead.

@ -19,10 +19,6 @@
#include "kaleidoscope/Runtime.h" #include "kaleidoscope/Runtime.h"
#define _DEPRECATED_MESSAGE_EEPROMSETTINGS_VERSION_SET \
"The EEPROMSettings.version(uint8_t version) method has been deprecated,\n" \
"and is a no-op now. Please see the NEWS file for more information."
namespace kaleidoscope { namespace kaleidoscope {
namespace plugin { namespace plugin {
class EEPROMSettings : public kaleidoscope::Plugin { class EEPROMSettings : public kaleidoscope::Plugin {
@ -50,7 +46,6 @@ class EEPROMSettings : public kaleidoscope::Plugin {
static uint8_t version(void) { static uint8_t version(void) {
return settings_.version; return settings_.version;
} }
static void version(uint8_t) DEPRECATED(EEPROMSETTINGS_VERSION_SET) {}
static uint16_t requestSlice(uint16_t size); static uint16_t requestSlice(uint16_t size);
static void seal(void); static void seal(void);

Loading…
Cancel
Save