Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix EE HANDS on splits losing handedness if RGB is enabled (#2399)
* Fix EE HANDS on splits losing handedness if RGB is enabled

* Because I'm an idiot and did a bad cut/paste job
  • Loading branch information
drashna authored and jackhumbert committed Feb 16, 2018
1 parent 1af8f1f commit b0e8de1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 27 deletions.
5 changes: 1 addition & 4 deletions keyboards/deltasplit75/split_util.h
Expand Up @@ -2,11 +2,8 @@
#define SPLIT_KEYBOARD_UTIL_H

#include <stdbool.h>
#include "eeconfig.h"

#ifdef EE_HANDS
#define EECONFIG_BOOTMAGIC_END (uint8_t *)10
#define EECONFIG_HANDEDNESS EECONFIG_BOOTMAGIC_END
#endif

#define SLAVE_I2C_ADDRESS 0x32

Expand Down
6 changes: 1 addition & 5 deletions keyboards/helix/rev1/split_util.h
Expand Up @@ -2,11 +2,7 @@
#define SPLIT_KEYBOARD_UTIL_H

#include <stdbool.h>

#ifdef EE_HANDS
#define EECONFIG_BOOTMAGIC_END (uint8_t *)10
#define EECONFIG_HANDEDNESS EECONFIG_BOOTMAGIC_END
#endif
#include "eeconfig.h"

#define SLAVE_I2C_ADDRESS 0x32

Expand Down
6 changes: 1 addition & 5 deletions keyboards/helix/rev2/split_util.h
Expand Up @@ -2,11 +2,7 @@
#define SPLIT_KEYBOARD_UTIL_H

#include <stdbool.h>

#ifdef EE_HANDS
#define EECONFIG_BOOTMAGIC_END (uint8_t *)10
#define EECONFIG_HANDEDNESS EECONFIG_BOOTMAGIC_END
#endif
#include "eeconfig.h"

#define SLAVE_I2C_ADDRESS 0x32

Expand Down
6 changes: 1 addition & 5 deletions keyboards/nyquist/split_util.h
Expand Up @@ -2,11 +2,7 @@
#define SPLIT_KEYBOARD_UTIL_H

#include <stdbool.h>

#ifdef EE_HANDS
#define EECONFIG_BOOTMAGIC_END (uint8_t *)10
#define EECONFIG_HANDEDNESS EECONFIG_BOOTMAGIC_END
#endif
#include "eeconfig.h"

#define SLAVE_I2C_ADDRESS 0x32

Expand Down
5 changes: 1 addition & 4 deletions keyboards/orthodox/split_util.h
Expand Up @@ -2,11 +2,8 @@
#define SPLIT_KEYBOARD_UTIL_H

#include <stdbool.h>
#include "eeconfig.h"

#ifdef EE_HANDS
#define EECONFIG_BOOTMAGIC_END (uint8_t *)10
#define EECONFIG_HANDEDNESS EECONFIG_BOOTMAGIC_END
#endif

#define SLAVE_I2C_ADDRESS 0x32

Expand Down
5 changes: 1 addition & 4 deletions keyboards/viterbi/split_util.h
Expand Up @@ -2,11 +2,8 @@
#define SPLIT_KEYBOARD_UTIL_H

#include <stdbool.h>
#include "eeconfig.h"

#ifdef EE_HANDS
#define EECONFIG_BOOTMAGIC_END (uint8_t *)10
#define EECONFIG_HANDEDNESS EECONFIG_BOOTMAGIC_END
#endif

#define SLAVE_I2C_ADDRESS 0x32

Expand Down

0 comments on commit b0e8de1

Please sign in to comment.