diff options
author | Nick Brassel <nick@tzarc.org> | 2023-02-28 11:22:29 +1100 |
---|---|---|
committer | Nick Brassel <nick@tzarc.org> | 2023-02-28 11:22:29 +1100 |
commit | bacec14073b2e897d5a52caf12de5a6a1f7b4078 (patch) | |
tree | d4e3e57aac1a829a191831efd2e62c8a43217885 /keyboards/fallacy | |
parent | d70e9b8659a7fbbd7069fd542bd07e67e04327a1 (diff) | |
parent | b865b9e1706ad28ae4882bd2e0331e98808295fa (diff) |
Merge remote-tracking branch 'upstream/develop'
Diffstat (limited to 'keyboards/fallacy')
-rwxr-xr-x | keyboards/fallacy/config.h | 10 | ||||
-rw-r--r-- | keyboards/fallacy/info.json | 3 | ||||
-rwxr-xr-x | keyboards/fallacy/rules.mk | 8 |
3 files changed, 3 insertions, 18 deletions
diff --git a/keyboards/fallacy/config.h b/keyboards/fallacy/config.h index b941af432c..fd84faa44d 100755 --- a/keyboards/fallacy/config.h +++ b/keyboards/fallacy/config.h @@ -15,12 +15,6 @@ */ #pragma once -#include "config_common.h" - -/* key matrix size - */ -#define MATRIX_ROWS 5 -#define MATRIX_COLS 15 /* key matrix pins */ @@ -38,10 +32,6 @@ #define LED_DRIVER_COUNT 1 #define LED_MATRIX_LED_COUNT 3 -/* Set 0 if debouncing isn't needed - */ -#define DEBOUNCE 5 - /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ #define LOCKING_SUPPORT_ENABLE diff --git a/keyboards/fallacy/info.json b/keyboards/fallacy/info.json index c0a9293267..65007a2ce9 100644 --- a/keyboards/fallacy/info.json +++ b/keyboards/fallacy/info.json @@ -7,6 +7,9 @@ "pid": "0xBFFA", "device_version": "0.0.1" }, + "processor": "atmega32u4", + "bootloader": "atmel-dfu", + "community_layouts": ["alice", "alice_split_bs"], "layouts": { "LAYOUT_alice_split_bs": { "layout": [ diff --git a/keyboards/fallacy/rules.mk b/keyboards/fallacy/rules.mk index 006f632528..704204983c 100755 --- a/keyboards/fallacy/rules.mk +++ b/keyboards/fallacy/rules.mk @@ -1,9 +1,3 @@ -# MCU name -MCU = atmega32u4 - -# Bootloader selection -BOOTLOADER = atmel-dfu - # Build Options # change yes to no to disable # @@ -21,5 +15,3 @@ AUDIO_ENABLE = no # Audio output SRC += indicators.c \ drivers/led/issi/is31fl3731-simple.c QUANTUM_LIB_SRC += i2c_master.c - -LAYOUTS = alice alice_split_bs |