Fix LED configuration for PS2AVRGB boards (#7989)
* Fix LED configuration for PS2AVRGB boards * Undo backlight on state changes
This commit is contained in:
parent
fe50883c15
commit
b568999769
38 changed files with 71 additions and 102 deletions
|
@ -25,16 +25,13 @@ void led_init_ports(void) {
|
|||
setPinOutput(D0);
|
||||
setPinOutput(D1);
|
||||
setPinOutput(D6);
|
||||
writePinHigh(D0);
|
||||
writePinHigh(D1);
|
||||
writePinHigh(D6);
|
||||
}
|
||||
|
||||
bool led_update_kb(led_t led_state) {
|
||||
if (led_update_user(led_state)) {
|
||||
writePin(D0, !led_state.num_lock);
|
||||
writePin(D1, !led_state.caps_lock);
|
||||
writePin(D6, !led_state.scroll_lock);
|
||||
writePin(D0, led_state.num_lock);
|
||||
writePin(D1, led_state.caps_lock);
|
||||
writePin(D6, led_state.scroll_lock);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue