Update k1 pro iso version

This commit is contained in:
lalalademaxiya1 2023-08-15 15:49:24 +08:00
parent 940411d2cb
commit 49a82abb20
3 changed files with 8 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ {
"usb": { "usb": {
"pid": "0x0211", "pid": "0x0211",
"device_version": "1.0.1" "device_version": "1.0.2"
}, },
"features": { "features": {
"rgb_matrix": true "rgb_matrix": true

View file

@ -1,7 +1,7 @@
{ {
"usb": { "usb": {
"pid": "0x0214", "pid": "0x0214",
"device_version": "1.0.0" "device_version": "1.0.1"
}, },
"features": { "features": {
"led_matrix": true "led_matrix": true

View file

@ -317,3 +317,9 @@ void raw_hid_receive(uint8_t *data, uint8_t length) {
} }
} }
#endif #endif
void suspend_wakeup_init_kb(void) {
// code will run on keyboard wakeup
clear_keyboard();
send_keyboard_report();
}