From 7c5ef4060e32396ddcbf0fd2ea9a22f569a4e984 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 20 Jun 2021 00:21:56 +0200 Subject: allow LINE_PINxx for Teensy 4.x pins (#13247) fixes https://github.com/qmk/qmk_firmware/issues/13052 --- data/schemas/keyboard.jsonschema | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'data/schemas/keyboard.jsonschema') diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index c335f49d52..177bb0a961 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema @@ -179,6 +179,10 @@ "type": "string", "pattern": "^[A-K]\\d{1,2}$" }, + { + "type": "string", + "pattern": "^LINE_PIN\\d{1,2}$" + }, { "type": "number", "multipleOf": 1 @@ -198,6 +202,10 @@ "type": "string", "pattern": "^[A-K]\\d{1,2}$" }, + { + "type": "string", + "pattern": "^LINE_PIN\\d{1,2}$" + }, { "type": "number", "multipleOf": 1 @@ -216,6 +224,10 @@ "type": "string", "pattern": "^[A-K]\\d{1,2}$" }, + { + "type": "string", + "pattern": "^LINE_PIN\\d{1,2}$" + }, { "type": "number", "multipleOf": 1 @@ -261,7 +273,7 @@ }, "pin": { "type": "string", - "pattern": "^[A-K]\\d{1,2}$" + "pattern": "^([A-K]\\d{1,2}|LINE_PIN\\d{1,2})$" }, "saturation_steps": { "type": "number", -- cgit v1.2.3