diff options
| author | fauxpark <fauxpark@gmail.com> | 2020-01-19 18:00:32 +1100 |
|---|---|---|
| committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-01-18 23:00:32 -0800 |
| commit | f5209aa4e941c7f3a942ef4a7e256ab432ec98ce (patch) | |
| tree | 29c2a0d197050ff2accb920731ddb1d022cb2a90 /keyboards/donutcables | |
| parent | eb5d267e637db4c2c639932b8c8176bf47dff78f (diff) | |
| download | qmk_firmware-f5209aa4e941c7f3a942ef4a7e256ab432ec98ce.tar.gz qmk_firmware-f5209aa4e941c7f3a942ef4a7e256ab432ec98ce.zip | |
Remove custom backlight code for PS2AVRGB boards (#7775)
* Remove custom backlight code for PS2AVRGB boards
* Remove custom driver setting
* BACKLIGHT_BREATHING goes in config.h, not here
* Don't need to include backlight.c again here either
* Turn on backlight for Canoe
* Disable console on a few boards due to oversize
Diffstat (limited to 'keyboards/donutcables')
| -rw-r--r-- | keyboards/donutcables/budget96/budget96.c | 32 | ||||
| -rw-r--r-- | keyboards/donutcables/budget96/config.h | 3 | ||||
| -rw-r--r-- | keyboards/donutcables/budget96/rules.mk | 2 |
3 files changed, 14 insertions, 23 deletions
diff --git a/keyboards/donutcables/budget96/budget96.c b/keyboards/donutcables/budget96/budget96.c index e9125a3e6..7317e24e2 100644 --- a/keyboards/donutcables/budget96/budget96.c +++ b/keyboards/donutcables/budget96/budget96.c | |||
| @@ -16,32 +16,22 @@ | |||
| 16 | 16 | ||
| 17 | #include "budget96.h" | 17 | #include "budget96.h" |
| 18 | 18 | ||
| 19 | void backlight_init_ports(void) { | 19 | void keyboard_pre_init_kb(void) { |
| 20 | // initialize pins D0, D1, D4 and D6 as output | 20 | led_init_ports(); |
| 21 | keyboard_pre_init_user(); | ||
| 22 | } | ||
| 23 | |||
| 24 | void led_init_ports(void) { | ||
| 21 | setPinOutput(D0); | 25 | setPinOutput(D0); |
| 22 | setPinOutput(D1); | 26 | setPinOutput(D1); |
| 23 | setPinOutput(D4); | ||
| 24 | setPinOutput(D6); | ||
| 25 | |||
| 26 | // turn backlight LEDs on | ||
| 27 | writePinHigh(D0); | 27 | writePinHigh(D0); |
| 28 | writePinHigh(D1); | 28 | writePinHigh(D1); |
| 29 | writePinHigh(D4); | ||
| 30 | writePinHigh(D6); | ||
| 31 | } | 29 | } |
| 32 | 30 | ||
| 33 | void backlight_set(uint8_t level) { | 31 | bool led_update_kb(led_t led_state) { |
| 34 | if (level == 0) { | 32 | if (led_update_user(led_state)) { |
| 35 | // turn backlight LEDs off | 33 | writePin(D0, !led_state.num_lock); |
| 36 | writePinLow(D0); | 34 | writePin(D1, !led_state.caps_lock); |
| 37 | writePinLow(D1); | ||
| 38 | writePinLow(D4); | ||
| 39 | writePinLow(D6); | ||
| 40 | } else { | ||
| 41 | // turn backlight LEDs on | ||
| 42 | writePinHigh(D0); | ||
| 43 | writePinHigh(D1); | ||
| 44 | writePinHigh(D4); | ||
| 45 | writePinHigh(D6); | ||
| 46 | } | 35 | } |
| 36 | return true; | ||
| 47 | } | 37 | } |
diff --git a/keyboards/donutcables/budget96/config.h b/keyboards/donutcables/budget96/config.h index 127e542f1..dddc8075b 100644 --- a/keyboards/donutcables/budget96/config.h +++ b/keyboards/donutcables/budget96/config.h | |||
| @@ -37,5 +37,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 37 | #define DIODE_DIRECTION COL2ROW | 37 | #define DIODE_DIRECTION COL2ROW |
| 38 | #define DEBOUNCE 5 | 38 | #define DEBOUNCE 5 |
| 39 | 39 | ||
| 40 | #define BACKLIGHT_LEVELS 1 | 40 | #define BACKLIGHT_PIN D4 |
| 41 | #define BACKLIGHT_LEVELS 3 | ||
| 41 | #define RGBLIGHT_ANIMATIONS | 42 | #define RGBLIGHT_ANIMATIONS |
diff --git a/keyboards/donutcables/budget96/rules.mk b/keyboards/donutcables/budget96/rules.mk index 54328d248..84eace5ed 100644 --- a/keyboards/donutcables/budget96/rules.mk +++ b/keyboards/donutcables/budget96/rules.mk | |||
| @@ -15,7 +15,7 @@ BOOTLOADER = bootloadHID | |||
| 15 | BOOTMAGIC_ENABLE = no | 15 | BOOTMAGIC_ENABLE = no |
| 16 | MOUSEKEY_ENABLE = yes | 16 | MOUSEKEY_ENABLE = yes |
| 17 | EXTRAKEY_ENABLE = yes | 17 | EXTRAKEY_ENABLE = yes |
| 18 | CONSOLE_ENABLE = yes | 18 | CONSOLE_ENABLE = no |
| 19 | COMMAND_ENABLE = yes | 19 | COMMAND_ENABLE = yes |
| 20 | BACKLIGHT_ENABLE = yes | 20 | BACKLIGHT_ENABLE = yes |
| 21 | RGBLIGHT_ENABLE = yes | 21 | RGBLIGHT_ENABLE = yes |
