Skip to content

Commit 0b62a4e

Browse files
authored
Repair Spleeb i2c config and chrishoage keymap (#20644)
1 parent c55c7fe commit 0b62a4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

keyboards/spleeb/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# define POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE
2323
#endif // POINTING_DEVICE_ENABLE
2424

25-
#define I2C_DRIVER I2CD1
25+
#define I2C_DRIVER I2CD0
2626
#define I2C1_SDA_PIN GP16
2727
#define I2C1_SCL_PIN GP17
2828

keyboards/spleeb/keymaps/chrishoage/keymap.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include QMK_KEYBOARD_H
55

66
// Double tap TD(0) to enter bootloader
7-
static void enter_qk_boot(qk_tap_dance_state_t *state, void *user_data) {
7+
static void enter_qk_boot(tap_dance_state_t *state, void *user_data) {
88
if (state->count >= 2) {
99
reset_keyboard();
1010
reset_tap_dance(state);
@@ -13,7 +13,7 @@ static void enter_qk_boot(qk_tap_dance_state_t *state, void *user_data) {
1313

1414
enum SpleebLayer { _BASE = 0, _FN, _MOUSE };
1515

16-
qk_tap_dance_action_t tap_dance_actions[] = {[0] = ACTION_TAP_DANCE_FN(enter_qk_boot)};
16+
tap_dance_action_t tap_dance_actions[] = {[0] = ACTION_TAP_DANCE_FN(enter_qk_boot)};
1717

1818
// clang-format off
1919
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

0 commit comments

Comments
 (0)