Configure shared EP to allow mods for extra keys

This commit is contained in:
Thomas Haukland
2025-01-01 20:15:18 +01:00
parent 73708a3f80
commit 539b9cf4cc
3 changed files with 6 additions and 7 deletions

View File

@@ -34,10 +34,10 @@
"processor": "RP2040",
"url": "",
"usb": {
"device_version": "2.0.0",
"pid": "0x0000",
"vid": "0xFEE3",
"force_nkro": true
"device_version": "2.0.1",
"pid": "0xAFB7",
"vid": "0xFEF3",
"force_nkro": false
},
"layouts": {
"LAYOUT_split_3x5_3": {

View File

@@ -29,9 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "ghosting.h"
#include "print.h"
// Adjust from default 30 to weigh up for increased time spent ghost-hunting.
// (the rp2040 does not seem to have any problems with this value...)
#define MATRIX_IO_DELAY 25
#define MATRIX_IO_DELAY 30
#define COL_SHIFTER ((uint16_t)1)

View File

@@ -6,6 +6,7 @@ DEFERRED_EXEC_ENABLE = yes
VIA_ENABLE = yes
VIAL_INSECURE = yes
ENCODER_ENABLE = yes
KEYBOARD_SHARED_EP = yes
SRC += encoder.c
SRC += ghosting.c
SRC += matrix.c