diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-01-23 13:55:24 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-01-23 13:55:24 -0500 |
commit | 841d7e6a1d74b1fc45575ed551132ec27353ebf3 (patch) | |
tree | 24f59f81823f36e76c01f6f36e8216b5d3531257 /keyboards/ergodox | |
parent | 6d377bcc9cb417158a71cd78656ca2e1743885b2 (diff) |
turn off rgb_midi in ez
Diffstat (limited to 'keyboards/ergodox')
-rw-r--r-- | keyboards/ergodox/ez/config.h | 2 | ||||
-rw-r--r-- | keyboards/ergodox/ez/ez.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/keyboards/ergodox/ez/config.h b/keyboards/ergodox/ez/config.h index 6a8c66d7d4..e4f95c302c 100644 --- a/keyboards/ergodox/ez/config.h +++ b/keyboards/ergodox/ez/config.h @@ -49,7 +49,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define RGBLIGHT_SAT_STEP 255 #define RGBLIGHT_VAL_STEP 12 -#define RGB_MIDI +// #define RGB_MIDI #define RGBW_BB_TWI #define RGBW 1 diff --git a/keyboards/ergodox/ez/ez.c b/keyboards/ergodox/ez/ez.c index 039e4c6bb1..3e19f23028 100644 --- a/keyboards/ergodox/ez/ez.c +++ b/keyboards/ergodox/ez/ez.c @@ -52,9 +52,9 @@ uint8_t init_mcp23018(void) { // I2C subsystem - uint8_t sreg_prev; - sreg_prev=SREG; - cli(); + // uint8_t sreg_prev; + // sreg_prev=SREG; + // cli(); if (i2c_initialized == 0) { i2c_init(); // on pins D(1,0) i2c_initialized++; @@ -83,7 +83,7 @@ uint8_t init_mcp23018(void) { out: i2c_stop(); - SREG=sreg_prev; + // SREG=sreg_prev; return mcp23018_status; } |