diff options
author | Jay Greco <jayv.greco@gmail.com> | 2022-03-16 08:34:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 08:34:16 -0700 |
commit | 193dd01f4ec06c3153b23a5cd809fbd97f43012d (patch) | |
tree | 4c5d3250a97f31fbf3019e359b391264a705955d /keyboards/nullbitsco/tidbit/rules.mk | |
parent | d5d2a01db2bc09735806fd62ef31997428885ddf (diff) |
[Keyboard] Add nullbits TIDBIT (#15182)
Diffstat (limited to 'keyboards/nullbitsco/tidbit/rules.mk')
-rw-r--r-- | keyboards/nullbitsco/tidbit/rules.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/keyboards/nullbitsco/tidbit/rules.mk b/keyboards/nullbitsco/tidbit/rules.mk new file mode 100644 index 0000000000..13893a69e2 --- /dev/null +++ b/keyboards/nullbitsco/tidbit/rules.mk @@ -0,0 +1,26 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +BOOTLOADER = atmel-dfu + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = no # 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 +LTO_ENABLE = yes + +# Project specific files +SRC += common/bitc_led.c \ + common/remote_kb.c +QUANTUM_LIB_SRC += i2c_master.c \ + uart.c |