Update GPIO API usage in keyboard code (#23361)

This commit is contained in:
Ryan
2024-05-03 15:21:29 +10:00
committed by GitHub
parent 5426a7a129
commit d09a06a1b3
390 changed files with 3912 additions and 3913 deletions

View File

@@ -1,17 +1,17 @@
#include "quantum.h"
void matrix_init_board(void){
setPinOutput(A8);
setPinOutput(A9);
setPinOutput(A10);
gpio_set_pin_output(A8);
gpio_set_pin_output(A9);
gpio_set_pin_output(A10);
}
bool led_update_kb(led_t led_state) {
bool runDefault = led_update_user(led_state);
if (runDefault) {
writePin(A8, !led_state.num_lock);
writePin(A9, !led_state.caps_lock);
writePin(A10, !led_state.scroll_lock);
gpio_write_pin(A8, !led_state.num_lock);
gpio_write_pin(A9, !led_state.caps_lock);
gpio_write_pin(A10, !led_state.scroll_lock);
}
return runDefault;
}