diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-04-07 07:34:01 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-07 07:34:01 -0700 |
commit | a8e3462b4bd5706f17f460e36b88b4063ef148f6 (patch) | |
tree | 71347d261fd54c053893d7364ed3b2e0b827b050 /keyboards/donutcables/budget96/rules.mk | |
parent | b8f7834051f601d028b8182077322c1b45d7c112 (diff) |
[Keyboard] Refactor budget96 to remove custom i2c code in favor of QMK i2c_master (#5571)
* remove custom i2c code in favor of QMK i2c_master
* fix readme
* disable bootmagic as it doesn't work on bmc boards
Diffstat (limited to 'keyboards/donutcables/budget96/rules.mk')
-rw-r--r-- | keyboards/donutcables/budget96/rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/donutcables/budget96/rules.mk b/keyboards/donutcables/budget96/rules.mk index e25b037279..67697ac733 100644 --- a/keyboards/donutcables/budget96/rules.mk +++ b/keyboards/donutcables/budget96/rules.mk @@ -31,7 +31,7 @@ F_CPU = 12000000 BOOTLOADER = bootloadHID # build options -BOOTMAGIC_ENABLE = lite +BOOTMAGIC_ENABLE = no MOUSEKEY_ENABLE = yes EXTRAKEY_ENABLE = yes CONSOLE_ENABLE = yes @@ -43,7 +43,7 @@ RGBLIGHT_CUSTOM_DRIVER = yes OPT_DEFS = -DDEBUG_LEVEL=0 # custom matrix setup -SRC = i2c.c +SRC = i2c_master.c # programming options PROGRAM_CMD = ./util/atmega32a_program.py $(TARGET).hex |