Compare commits

...

7 Commits

Author SHA1 Message Date
Blake
e4973af8c7
Merge 662da5084f into 9c86583981 2024-11-19 18:24:13 -08:00
Blake
662da5084f
Update keyboards/draytronics/elise_v2/readme.md
Co-authored-by: Ryan <fauxpark@gmail.com>
2024-10-15 15:27:05 +01:00
Blake
a3c26a32a0
Update keyboards/draytronics/elise_v2/readme.md
Co-authored-by: Ryan <fauxpark@gmail.com>
2024-10-15 13:47:14 +01:00
Blake
d40551b4ad
Update keyboards/draytronics/elise_v2/readme.md
Co-authored-by: Ryan <fauxpark@gmail.com>
2024-10-15 13:47:00 +01:00
Blake Drayson
0a7dd57ab3 Move USB fix from keymap.c to keymap level config.h 2024-06-18 09:00:09 +01:00
Blake Drayson
0df120954f Moved key repeat sleep fix to user space. 2024-06-15 11:14:26 +01:00
Blake Drayson
d8542e80d6 Fix for key repeat on wake from sleep, RBG sleep tweak, readme update 2024-06-14 21:41:13 +01:00
4 changed files with 73 additions and 2 deletions

View File

@ -9,8 +9,6 @@
"device_version": "2.0.0"
},
"rgblight": {
"saturation_steps": 8,
"brightness_steps": 8,
"led_count": 16,
"sleep": true,
"animations": {
@ -39,6 +37,7 @@
"rgblight": true
},
"qmk": {
"tap_keycode_delay": 10,
"locking": {
"enabled": true,
"resync": true

View File

@ -0,0 +1,24 @@
/*Copyright 2021 Blake Drayson / Draytronics
Contact info@draytronics.co.uk
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//KVM Specific tweaks to prevent key repeat on wake from sleep.
//Please comment out and recompile if you do not wish to use them.
#pragma once
#define USB_POLLING_INTERVAL_MS 8
#define USB_SUSPEND_WAKEUP_DELAY 3000

View File

@ -0,0 +1,24 @@
/*Copyright 2021 Blake Drayson / Draytronics
Contact info@draytronics.co.uk
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//KVM Specific tweaks to prevent key repeat on wake from sleep.
//Please comment out and recompile if you do not wish to use them.
#pragma once
#define USB_POLLING_INTERVAL_MS 8
#define USB_SUSPEND_WAKEUP_DELAY 3000

View File

@ -0,0 +1,24 @@
/*Copyright 2021 Blake Drayson / Draytronics
Contact info@draytronics.co.uk
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//KVM Specific tweaks to prevent key repeat on wake from sleep.
//Please comment out and recompile if you do not wish to use them.
#pragma once
#define USB_POLLING_INTERVAL_MS 8
#define USB_SUSPEND_WAKEUP_DELAY 3000