diff options
author | Joel Challis <git@zvecr.com> | 2024-04-20 09:18:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 09:18:12 +0100 |
commit | 49593dc81ffc178e56639c89e61572e570b42ad5 (patch) | |
tree | c1011a26c235b8dd88feea44724940ecdfdd3672 /keyboards/orthocode | |
parent | 5ab3b27e5f9049d2e4036a71cc4fc7f2922629d1 (diff) |
Migrate build target markers to keyboard.json - OQ (#23564)
Diffstat (limited to 'keyboards/orthocode')
-rw-r--r-- | keyboards/orthocode/keyboard.json (renamed from keyboards/orthocode/info.json) | 11 | ||||
-rw-r--r-- | keyboards/orthocode/rules.mk | 15 |
2 files changed, 11 insertions, 15 deletions
diff --git a/keyboards/orthocode/info.json b/keyboards/orthocode/keyboard.json index b7fe9dab47..69f3374b27 100644 --- a/keyboards/orthocode/info.json +++ b/keyboards/orthocode/keyboard.json @@ -9,6 +9,17 @@ "device_version": "0.0.1", "max_power": 100 }, + "build": { + "lto": true + }, + "features": { + "bootmagic": true, + "encoder": true, + "extrakey": true, + "mousekey": true, + "nkro": false, + "rgblight": true + }, "matrix_pins": { "cols": ["C4", "C3", "C2", "C1", "C0", "D7", "D6", "A7", "A4", "A5", "A6", "A3", "A2", "A1", "A0"], "rows": ["B0", "B1", "B2", "B3", "B4"] diff --git a/keyboards/orthocode/rules.mk b/keyboards/orthocode/rules.mk index d9dd6a59c9..c2ee0bc86f 100644 --- a/keyboards/orthocode/rules.mk +++ b/keyboards/orthocode/rules.mk @@ -1,17 +1,2 @@ # Processor frequency F_CPU = 16000000 - -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite -MOUSEKEY_ENABLE = yes # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output -ENCODER_ENABLE = yes # Enables the use of one or more encoders -LTO_ENABLE = yes |