From fc773ff0cf9c528773fa81be0fc8880ca5153d81 Mon Sep 17 00:00:00 2001 From: Florian Didron Date: Tue, 31 May 2022 19:03:21 +0900 Subject: Reimplements Oryx's live training over raw hid (#345) * feat: initial commit, random pairing sequence generation, host - board pairing handshakes * feat: reimplements ory's live training over raw hid * feat: adds planck / ergodox support * chore: some code styling fixes * fix: build smoke tests * fix: code lint * fix: disable console / command on moonlander, fixes build ci test * fix: code lint * fix: remove unused define(MATRIX_SIZE) --- quantum/eeconfig.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'quantum/eeconfig.c') diff --git a/quantum/eeconfig.c b/quantum/eeconfig.c index 01895bae2a..0ff9996ca4 100644 --- a/quantum/eeconfig.c +++ b/quantum/eeconfig.c @@ -3,9 +3,6 @@ #include "eeprom.h" #include "eeconfig.h" #include "action_layer.h" -#ifdef ORYX_ENABLE -# include "oryx.h" -#endif #if defined(EEPROM_DRIVER) # include "eeprom_driver.h" @@ -60,10 +57,6 @@ void eeconfig_init_quantum(void) { eeprom_update_dword(EECONFIG_RGB_MATRIX, 0); eeprom_update_word(EECONFIG_RGB_MATRIX_EXTENDED, 0); -#ifdef ORYX_ENABLE - eeconfig_init_oryx(); -#endif - // TODO: Remove once ARM has a way to configure EECONFIG_HANDEDNESS // within the emulated eeprom via dfu-util or another tool #if defined INIT_EE_HANDS_LEFT -- cgit v1.2.3