Skip to content

Commit

Permalink
[Keyboard] Remove unnecessary IS_COMMAND definitions from a couple of…
Browse files Browse the repository at this point in the history
… boards (#5269)

* Remove unnecessary IS_COMMAND definition from clueboard/66_hotswap/gen1

* Remove old-style IS_COMMAND definition comment from dozen0

* Use get_mods() instead of keyboard_report->mods in georgi
  • Loading branch information
vomindoraan authored and drashna committed Mar 19, 2019
1 parent 0072fdd commit 6a4884e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
5 changes: 0 additions & 5 deletions keyboards/clueboard/66_hotswap/gen1/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,6 @@
*/
//#define FORCE_NKRO

/* key combination for magic key command */
#define IS_COMMAND() ( \
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
)

/*
* Feature disable options
* These options are also useful to firmware size reduction.
Expand Down
5 changes: 0 additions & 5 deletions keyboards/dozen0/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,6 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

/* key combination for magic key command */
/*#define IS_COMMAND() ( \
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
)*/

/* control how magic key switches layers */
//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
Expand Down
4 changes: 2 additions & 2 deletions keyboards/georgi/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.

/* key combination for command */
#define IS_COMMAND() ( \
keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
)

#define DEBOUNCE 5
Expand Down

0 comments on commit 6a4884e

Please sign in to comment.