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/exent/exent.c | |
| 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/exent/exent.c')
| -rw-r--r-- | keyboards/exent/exent.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/keyboards/exent/exent.c b/keyboards/exent/exent.c index 82066f7e8..c6870f2c7 100644 --- a/keyboards/exent/exent.c +++ b/keyboards/exent/exent.c | |||
| @@ -15,3 +15,26 @@ | |||
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include "exent.h" | 17 | #include "exent.h" |
| 18 | |||
| 19 | void keyboard_pre_init_kb(void) { | ||
| 20 | led_init_ports(); | ||
| 21 | keyboard_pre_init_user(); | ||
| 22 | } | ||
| 23 | |||
| 24 | void led_init_ports(void) { | ||
| 25 | setPinOutput(D0); | ||
| 26 | setPinOutput(D1); | ||
| 27 | setPinOutput(D6); | ||
| 28 | writePinHigh(D0); | ||
| 29 | writePinHigh(D1); | ||
| 30 | writePinHigh(D6); | ||
| 31 | } | ||
| 32 | |||
| 33 | bool led_update_kb(led_t led_state) { | ||
| 34 | if (led_update_user(led_state)) { | ||
| 35 | writePin(D0, !led_state.num_lock); | ||
| 36 | writePin(D1, !led_state.caps_lock); | ||
| 37 | writePin(D6, !led_state.scroll_lock); | ||
| 38 | } | ||
| 39 | return true; | ||
| 40 | } | ||
