diff options
author | Drashna Jaelre <drashna@live.com> | 2022-08-05 18:58:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 02:58:06 +0100 |
commit | ad4ef47d2b92c158d49feabf28cc3b5eb367a1c4 (patch) | |
tree | d3c0e3307b8693b48a7e8e68e8edb03b81c01205 /keyboards/bastardkb/dilemma/splinky/splinky.c | |
parent | 758a0a09022b706bc459e7dbf2b00ce2cc7742da (diff) |
[Keyboard] use correct function in Dilemma splinky (#17923)
Diffstat (limited to 'keyboards/bastardkb/dilemma/splinky/splinky.c')
-rw-r--r-- | keyboards/bastardkb/dilemma/splinky/splinky.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/bastardkb/dilemma/splinky/splinky.c b/keyboards/bastardkb/dilemma/splinky/splinky.c index f38fe43818..0100ae06ae 100644 --- a/keyboards/bastardkb/dilemma/splinky/splinky.c +++ b/keyboards/bastardkb/dilemma/splinky/splinky.c @@ -20,7 +20,7 @@ // Forward declare RP2040 SDK declaration. void gpio_init(uint gpio); -void keyboard_pre_init_user(void) { +void keyboard_pre_init_kb(void) { // Ensures that GP26 through GP29 are initialized as digital inputs (as // opposed to analog inputs). These GPIOs are shared with A0 through A3, // respectively. On RP2040-B2 and later, the digital inputs are disabled by @@ -29,4 +29,5 @@ void keyboard_pre_init_user(void) { gpio_init(GP27); gpio_init(GP28); gpio_init(GP29); + keyboard_pre_init_user(); } |