aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/ai03
diff options
context:
space:
mode:
authorRyan2024-05-03 07:21:29 +0200
committerGitHub2024-05-03 07:21:29 +0200
commitd09a06a1b354760fd0e64a453abade972900e885 (patch)
tree88d94640f4507ac8d7f570607423825bec3c6f89 /keyboards/ai03
parent5426a7a129acf2ff5c8b435014747f1238e17965 (diff)
Update GPIO API usage in keyboard code (#23361)
Diffstat (limited to 'keyboards/ai03')
-rw-r--r--keyboards/ai03/orbit/orbit.c24
-rw-r--r--keyboards/ai03/vega/vega.c8
2 files changed, 16 insertions, 16 deletions
diff --git a/keyboards/ai03/orbit/orbit.c b/keyboards/ai03/orbit/orbit.c
index 5097f9cd90..0c1e0dc32e 100644
--- a/keyboards/ai03/orbit/orbit.c
+++ b/keyboards/ai03/orbit/orbit.c
@@ -19,13 +19,13 @@
void led_init_ports(void) {
// Initialize indicator LEDs to output
if (isLeftHand) {
- setPinOutput(C6);
- setPinOutput(B6);
- setPinOutput(B5);
+ gpio_set_pin_output(C6);
+ gpio_set_pin_output(B6);
+ gpio_set_pin_output(B5);
} else {
- setPinOutput(F6);
- setPinOutput(F7);
- setPinOutput(C7);
+ gpio_set_pin_output(F6);
+ gpio_set_pin_output(F7);
+ gpio_set_pin_output(C7);
}
set_layer_indicators(0);
@@ -40,15 +40,15 @@ void led_toggle(uint8_t id, bool on) {
switch (id) {
case 0:
// Left hand C6
- writePin(C6, on);
+ gpio_write_pin(C6, on);
break;
case 1:
// Left hand B6
- writePin(B6, on);
+ gpio_write_pin(B6, on);
break;
case 2:
// Left hand B5
- writePin(B5, on);
+ gpio_write_pin(B5, on);
break;
default:
break;
@@ -57,15 +57,15 @@ void led_toggle(uint8_t id, bool on) {
switch (id) {
case 3:
// Right hand F6
- writePin(F6, on);
+ gpio_write_pin(F6, on);
break;
case 4:
// Right hand F7
- writePin(F7, on);
+ gpio_write_pin(F7, on);
break;
case 5:
// Right hand C7
- writePin(C7, on);
+ gpio_write_pin(C7, on);
break;
default:
break;
diff --git a/keyboards/ai03/vega/vega.c b/keyboards/ai03/vega/vega.c
index 6ed1651e50..44ded2c85c 100644
--- a/keyboards/ai03/vega/vega.c
+++ b/keyboards/ai03/vega/vega.c
@@ -19,8 +19,8 @@
void matrix_init_kb(void) {
// Initialize indicator LEDs to output
- setPinOutput(B7); // Caps
- setPinOutput(A5); // Slck
+ gpio_set_pin_output(B7); // Caps
+ gpio_set_pin_output(A5); // Slck
matrix_init_user();
}
@@ -30,8 +30,8 @@ bool led_update_kb(led_t led_state) {
bool res = led_update_user(led_state);
if(res) {
- writePin(B7, !led_state.caps_lock);
- writePin(A5, !led_state.scroll_lock);
+ gpio_write_pin(B7, !led_state.caps_lock);
+ gpio_write_pin(A5, !led_state.scroll_lock);
}
return res;
} \ No newline at end of file