32b63d676f
* 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
23 lines
826 B
C
23 lines
826 B
C
#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
|