aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@users.noreply.github.com>2021-06-20 00:21:56 +0200
committerGitHub <noreply@github.com>2021-06-19 15:21:56 -0700
commit7c5ef4060e32396ddcbf0fd2ea9a22f569a4e984 (patch)
tree7cb12ed90c3e96d2e52c0d506d6cc8f04f85c874 /data
parent8dc036c2e49f51a8dc1721ac8e84d7ec1c873f1e (diff)
downloadqmk_firmware-7c5ef4060e32396ddcbf0fd2ea9a22f569a4e984.tar.gz
qmk_firmware-7c5ef4060e32396ddcbf0fd2ea9a22f569a4e984.zip
allow LINE_PINxx for Teensy 4.x pins (#13247)
fixes https://github.com/qmk/qmk_firmware/issues/13052
Diffstat (limited to 'data')
-rw-r--r--data/schemas/keyboard.jsonschema14
1 files changed, 13 insertions, 1 deletions
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema
index c335f49d5..177bb0a96 100644
--- a/data/schemas/keyboard.jsonschema
+++ b/data/schemas/keyboard.jsonschema
@@ -180,6 +180,10 @@
180 "pattern": "^[A-K]\\d{1,2}$" 180 "pattern": "^[A-K]\\d{1,2}$"
181 }, 181 },
182 { 182 {
183 "type": "string",
184 "pattern": "^LINE_PIN\\d{1,2}$"
185 },
186 {
183 "type": "number", 187 "type": "number",
184 "multipleOf": 1 188 "multipleOf": 1
185 }, 189 },
@@ -199,6 +203,10 @@
199 "pattern": "^[A-K]\\d{1,2}$" 203 "pattern": "^[A-K]\\d{1,2}$"
200 }, 204 },
201 { 205 {
206 "type": "string",
207 "pattern": "^LINE_PIN\\d{1,2}$"
208 },
209 {
202 "type": "number", 210 "type": "number",
203 "multipleOf": 1 211 "multipleOf": 1
204 }, 212 },
@@ -217,6 +225,10 @@
217 "pattern": "^[A-K]\\d{1,2}$" 225 "pattern": "^[A-K]\\d{1,2}$"
218 }, 226 },
219 { 227 {
228 "type": "string",
229 "pattern": "^LINE_PIN\\d{1,2}$"
230 },
231 {
220 "type": "number", 232 "type": "number",
221 "multipleOf": 1 233 "multipleOf": 1
222 }, 234 },
@@ -261,7 +273,7 @@
261 }, 273 },
262 "pin": { 274 "pin": {
263 "type": "string", 275 "type": "string",
264 "pattern": "^[A-K]\\d{1,2}$" 276 "pattern": "^([A-K]\\d{1,2}|LINE_PIN\\d{1,2})$"
265 }, 277 },
266 "saturation_steps": { 278 "saturation_steps": {
267 "type": "number", 279 "type": "number",