diff options
| author | Ryan <fauxpark@gmail.com> | 2024-05-03 15:21:29 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-03 15:21:29 +1000 |
| commit | d09a06a1b354760fd0e64a453abade972900e885 (patch) | |
| tree | 88d94640f4507ac8d7f570607423825bec3c6f89 /keyboards/flx | |
| parent | 5426a7a129acf2ff5c8b435014747f1238e17965 (diff) | |
Update GPIO API usage in keyboard code (#23361)
Diffstat (limited to 'keyboards/flx')
| -rw-r--r-- | keyboards/flx/virgo/virgo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/flx/virgo/virgo.c b/keyboards/flx/virgo/virgo.c index 5260e15322..2f875531d0 100644 --- a/keyboards/flx/virgo/virgo.c +++ b/keyboards/flx/virgo/virgo.c | |||
| @@ -20,15 +20,15 @@ void matrix_init_kb(void) { | |||
| 20 | // put your keyboard start-up code here | 20 | // put your keyboard start-up code here |
| 21 | // runs once when the firmware starts up | 21 | // runs once when the firmware starts up |
| 22 | 22 | ||
| 23 | setPinOutput(E6); | 23 | gpio_set_pin_output(E6); |
| 24 | setPinOutput(B2); | 24 | gpio_set_pin_output(B2); |
| 25 | matrix_init_user(); | 25 | matrix_init_user(); |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | bool led_update_kb(led_t led_state) { | 28 | bool led_update_kb(led_t led_state) { |
| 29 | if(led_update_user(led_state)) { | 29 | if(led_update_user(led_state)) { |
| 30 | writePin(E6, !led_state.caps_lock); | 30 | gpio_write_pin(E6, !led_state.caps_lock); |
| 31 | writePin(B2, !led_state.scroll_lock); | 31 | gpio_write_pin(B2, !led_state.scroll_lock); |
| 32 | } | 32 | } |
| 33 | return true; | 33 | return true; |
| 34 | } | 34 | } |
