Browse Source

[Keymap] Cleaning up my config and userspace files (#5265)

* Removed since options are in userspace

* Removed RGB option that was breaking one of my builds

* Remove unused options

* Removed options present in userspace, add board specific options here

* Removed code also present in userspace

* Turns out those lines were needed, added them back

* Testing changes

* Added code to ensure board read as ANSI instead of default ISO for HS60

* Setting \ key to "MOD" instead of "ALPHA" for lighting
pull/5284/head
stanrc85 5 years ago
committed by Drashna Jaelre
parent
commit
32b63d676f
5 changed files with 23 additions and 25 deletions
  1. +22
    -2
      keyboards/hs60/v2/keymaps/stanrc85/config.h
  2. +1
    -15
      keyboards/hs60/v2/keymaps/stanrc85/keymap.c
  3. +0
    -3
      keyboards/hs60/v2/keymaps/stanrc85/rules.mk
  4. +0
    -4
      users/stanrc85/config.h
  5. +0
    -1
      users/stanrc85/rules.mk

+ 22
- 2
keyboards/hs60/v2/keymaps/stanrc85/config.h View File

@ -1,2 +1,22 @@
#define TAPPING_TERM 200
#define RETRO_TAPPING
#pragma once
// Include overwrites for specific keymap
#define HS60_ANSI
#undef PRODUCT_ID
#define PRODUCT_ID 0x4854
// disable backlight after timeout in minutes, 0 = no timeout
#undef RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT
#define RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT 10
#undef RGB_BACKLIGHT_ALPHAS_MODS_ROW_0
#undef RGB_BACKLIGHT_ALPHAS_MODS_ROW_1
#undef RGB_BACKLIGHT_ALPHAS_MODS_ROW_2
#undef RGB_BACKLIGHT_ALPHAS_MODS_ROW_3
#undef RGB_BACKLIGHT_ALPHAS_MODS_ROW_4
#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_0 0b0010000000000001
#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_1 0b0000000000000001
#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_2 0b0011000000000001 //Setting \ key to "MOD" instead of "ALPHA" for lighting
#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_3 0b0010000000000001
#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_4 0b0011110000000111

+ 1
- 15
keyboards/hs60/v2/keymaps/stanrc85/keymap.c View File

@ -14,21 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include QMK_KEYBOARD_H
#define DEFAULT 0 //Custom ANSI
#define LAYER1 1 //Default ANSI (enable with Fn2+D)
#define LAYER2 2 //Function keys, arrows, custom shortcuts, volume control
#define LAYER3 3 //RGB Underglow controls and RESET
//Aliases for longer keycodes
#define KC_CAD LALT(LCTL(KC_DEL))
#define KC_LOCK LGUI(KC_L)
#define CA_QUOT LCA(KC_QUOT)
#define CA_SCLN LCA(KC_SCLN)
#define KC_CTLE LCTL_T(KC_ESC)
#define LT_SPCF LT(2, KC_SPC)
#define TD_TESC TD(TD_ESC)
#define TD_TWIN TD(TD_WIN)
#include "stanrc85.h"
//Tap Dance Declarations
enum {


+ 0
- 3
keyboards/hs60/v2/keymaps/stanrc85/rules.mk View File

@ -1,3 +0,0 @@
TAP_DANCE_ENABLE = yes
DYNAMIC_KEYMAP_ENABLE = no

+ 0
- 4
users/stanrc85/config.h View File

@ -2,7 +2,3 @@
#define TAPPING_TERM 200
#define RETRO_TAPPING
#ifdef RGBLIGHT_ENABLE
#define RGBLIGHT_SLEEP
#endif // RGBLIGHT_ENABLE

+ 0
- 1
users/stanrc85/rules.mk View File

@ -1,6 +1,5 @@
TAP_DANCE_ENABLE = yes
EXTRAKEY_ENABLE = yes
RGBLIGHT_ENABLE = yes
BACKLIGHT_ENABLE = no
COMMAND_ENABLE = no
BOOTMAGIC_ENABLE = no


Loading…
Cancel
Save