diff options
author | fauxpark <fauxpark@gmail.com> | 2019-08-09 07:09:54 +1000 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-08-13 10:50:27 +0900 |
commit | b6e465be968dfa61540889bb05a22a2077676113 (patch) | |
tree | a67e1346a1df2c3c110a9ec9ab5739991d6178d6 /quantum/template/ps2avrgb | |
parent | 36a0c2b456496ce926df2356dc81d0332cebda63 (diff) |
Add some defaults for ATmega32A to mcu_selection.mk (#6253)
* Add some defaults for ATmega32A to mcu_selection.mk
* Remove boilerplate from templates
* Relax INTERRUPT_CONTROL_ENDPOINT and PROGRAM_CMD
* Apply suggestions from code review
Co-Authored-By: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'quantum/template/ps2avrgb')
-rw-r--r-- | quantum/template/ps2avrgb/rules.mk | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/quantum/template/ps2avrgb/rules.mk b/quantum/template/ps2avrgb/rules.mk index 440d99345f..69554cd308 100644 --- a/quantum/template/ps2avrgb/rules.mk +++ b/quantum/template/ps2avrgb/rules.mk @@ -1,13 +1,5 @@ # MCU name MCU = atmega32a -PROTOCOL = VUSB - -# unsupported features for now -NO_UART = yes -NO_SUSPEND_POWER_DOWN = yes - -# processor frequency -F_CPU = 12000000 # Bootloader # This definition is optional, and if your keyboard supports multiple bootloaders of @@ -27,9 +19,4 @@ RGBLIGHT_CUSTOM_DRIVER = yes OPT_DEFS = -DDEBUG_LEVEL=0 -# custom matrix setup -CUSTOM_MATRIX = yes -SRC = matrix.c i2c.c - -# programming options -PROGRAM_CMD = ./util/atmega32a_program.py $(TARGET).hex +SRC += i2c_master.c |