Ported from qmk-dz60-half-kh-hacker
.
- Clone the repo to
qmk/keyboards/hs60/v2/iso/keymaps/half-kh-hacker
- To build, type
make hs60/v2/iso:half-kh-hacker
(or justqmk compile
) - Flash as usual.
- Currently, if you want to build QMK with ChibiOS on GCC 9.x, you need to remove the
sp
entries from some inline ASM incmsis_gcc.h
- To support the custom backlighting, you have to make a few changes to
wt_rgb_backlight.c
:
@@ -1837,6 +1837,8 @@ void backlight_effect_indicators(void)
}
}
+#include "../hs60/v2/iso/keymaps/half-kh-hacker/backlighting/user_bl.h"
+
#if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65)
@@ -1928,6 +1930,9 @@ static void gpt_backlight_timer_task(GPTDriver *gptp)
case 10:
backlight_effect_cycle_radial2();
break;
+ case 11:
+ backlight_effect_user();
+ break;
default:
backlight_effect_all_off();
break;