diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-04-07 07:30:40 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-07 07:30:40 -0700 |
commit | 0231caa25aa258a79a7fb73cc57723655055b928 (patch) | |
tree | 90624a1942962dcf78a50a5c13bc355c1f43a321 /keyboards/facew/rules.mk | |
parent | 5c1ef2bddc0fa5d4753d33a5ec8fed5d9da736c8 (diff) |
[Keyboard] Refactor FaceW for new BMC changes (#5575)
* use #pragma once for guards
* update readme and fix pyusb install instructions
* replace custom i2c code with QMK i2c_master
* remove unneeded code from config.h
* fix keyboard name
* remove custom matrix and i2c driver
* turn off bootmagic, turn on leds
* remove keymap in favor of userspace/community layouts keymap
* remove custom matrix
* update readme
Diffstat (limited to 'keyboards/facew/rules.mk')
-rw-r--r-- | keyboards/facew/rules.mk | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/keyboards/facew/rules.mk b/keyboards/facew/rules.mk index 77d29b3320..b939b0fd24 100644 --- a/keyboards/facew/rules.mk +++ b/keyboards/facew/rules.mk @@ -31,20 +31,19 @@ F_CPU = 12000000 BOOTLOADER = bootloadHID # build options -BOOTMAGIC_ENABLE = yes +BOOTMAGIC_ENABLE = no MOUSEKEY_ENABLE = yes EXTRAKEY_ENABLE = yes CONSOLE_ENABLE = yes COMMAND_ENABLE = yes -BACKLIGHT_ENABLE = no -RGBLIGHT_ENABLE = no +BACKLIGHT_ENABLE = yes +RGBLIGHT_ENABLE = yes RGBLIGHT_CUSTOM_DRIVER = yes OPT_DEFS = -DDEBUG_LEVEL=0 # custom matrix setup -CUSTOM_MATRIX = yes -SRC = matrix.c i2c.c +SRC = i2c_master.c # programming options PROGRAM_CMD = ./util/atmega32a_program.py $(TARGET).hex |