Update GPIO API usage in keyboard code (#23361)
This commit is contained in:
parent
5426a7a129
commit
d09a06a1b3
390 changed files with 3912 additions and 3913 deletions
|
@ -1,9 +1,9 @@
|
|||
#include "quantum.h"
|
||||
|
||||
void keyboard_pre_init_kb(void) {
|
||||
setPinOutput(INDICATOR_PIN_0);
|
||||
setPinOutput(INDICATOR_PIN_1);
|
||||
setPinOutput(INDICATOR_PIN_2);
|
||||
gpio_set_pin_output(INDICATOR_PIN_0);
|
||||
gpio_set_pin_output(INDICATOR_PIN_1);
|
||||
gpio_set_pin_output(INDICATOR_PIN_2);
|
||||
|
||||
keyboard_pre_init_user();
|
||||
}
|
||||
|
@ -12,9 +12,9 @@ void keyboard_pre_init_kb(void) {
|
|||
bool led_update_kb(led_t led_state) {
|
||||
bool runDefault = led_update_user(led_state);
|
||||
if (runDefault) {
|
||||
writePin(INDICATOR_PIN_0, !led_state.num_lock);
|
||||
writePin(INDICATOR_PIN_1, !led_state.caps_lock);
|
||||
writePin(INDICATOR_PIN_2, !led_state.scroll_lock);
|
||||
gpio_write_pin(INDICATOR_PIN_0, !led_state.num_lock);
|
||||
gpio_write_pin(INDICATOR_PIN_1, !led_state.caps_lock);
|
||||
gpio_write_pin(INDICATOR_PIN_2, !led_state.scroll_lock);
|
||||
}
|
||||
return runDefault;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue