aboutsummaryrefslogtreecommitdiff
path: root/keyboards/kiserdesigns
diff options
context:
space:
mode:
authorJames Young <18669334+noroadsleft@users.noreply.github.com>2024-05-22 13:59:35 -0700
committerGitHub <noreply@github.com>2024-05-22 21:59:35 +0100
commit030d503d35c01aad65ecfec171b08a963da9866e (patch)
treef14f1a4c1217ec75b870bd27aa637dbc651ab3e8 /keyboards/kiserdesigns
parent199f01cc5760055dfbdc89f426bf5a8f9b49bfb7 (diff)
Migrate `LOCKING_*_ENABLE` to Data-Driven: K, Part 3 (#23770)
Affects: - `kindakeyboards/conone65` - `kinesis` - `kingly_keys/ave/ortho` - `kingly_keys/ave/staggered` - `kingly_keys/little_foot` - `kingly_keys/romac` - `kingly_keys/romac_plus` - `kingly_keys/ropro` - `kingly_keys/smd_milk` - `kingly_keys/soap` - `kira/kira75` - `kisakeyluxury/qtz` - `kiserdesigns/madeline` - `kiwikeebs/macro` - `kiwikeebs/macro_v2` - `kiwikey/borderland` - `kiwikey/kawii9` - `kiwikey/wanderland` - `kkatano/bakeneko60` - `kkatano/bakeneko65/rev2` - `kkatano/bakeneko65/rev3` - `kkatano/bakeneko80` - `kkatano/wallaby` - `kkatano/yurei` - `knops/mini` - `kona_classic` - `kopibeng/mnk60_stm32` - `kopibeng/mnk65` - `kopibeng/mnk65_stm32` - `kopibeng/mnk88` - `kopibeng/typ65` - `kopibeng/xt60` - `kopibeng/xt60_singa` - `kopibeng/xt65` - `kopibeng/xt8x` - `kprepublic/bm16s` - `kprepublic/bm40hsrgb/rev1` - `kprepublic/bm65hsrgb/rev1` - `kprepublic/bm68hsrgb/rev1` - `kprepublic/bm980hsrgb` - `kprepublic/cospad` - `ktec/daisy` - `kumaokobo/kudox/columner` - `kumaokobo/kudox/rev1` - `kumaokobo/kudox/rev2` - `kumaokobo/kudox/rev3` - `kumaokobo/kudox_full/rev1` - `kumaokobo/kudox_game/rev1` - `kumaokobo/kudox_game/rev2` - `kumaokobo/pico/65keys` - `kumaokobo/pico/70keys` - `kv/revt` - `kwub/bloop` - `ky01`
Diffstat (limited to 'keyboards/kiserdesigns')
-rw-r--r--keyboards/kiserdesigns/madeline/config.h3
-rw-r--r--keyboards/kiserdesigns/madeline/keyboard.json8
2 files changed, 6 insertions, 5 deletions
diff --git a/keyboards/kiserdesigns/madeline/config.h b/keyboards/kiserdesigns/madeline/config.h
index 8522d7cd43..027e62e3c6 100644
--- a/keyboards/kiserdesigns/madeline/config.h
+++ b/keyboards/kiserdesigns/madeline/config.h
@@ -15,9 +15,6 @@
*/
#pragma once
-#define LOCKING_SUPPORT_ENABLE
-#define LOCKING_RESYNC_ENABLE
-
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
diff --git a/keyboards/kiserdesigns/madeline/keyboard.json b/keyboards/kiserdesigns/madeline/keyboard.json
index 73d3f5ccff..8a1a988a6f 100644
--- a/keyboards/kiserdesigns/madeline/keyboard.json
+++ b/keyboards/kiserdesigns/madeline/keyboard.json
@@ -24,7 +24,11 @@
},
"processor": "RP2040",
"qmk": {
- "tap_keycode_delay": 10
+ "tap_keycode_delay": 10,
+ "locking": {
+ "enabled": true,
+ "resync": true
+ }
},
"url": "https://qmk.fm/keyboards",
"usb": {
@@ -74,4 +78,4 @@
]
}
}
-} \ No newline at end of file
+}