summaryrefslogtreecommitdiff
path: root/keyboards/40percentclub/4pack
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-05-03 15:21:29 +1000
committerGitHub <noreply@github.com>2024-05-03 15:21:29 +1000
commitd09a06a1b354760fd0e64a453abade972900e885 (patch)
tree88d94640f4507ac8d7f570607423825bec3c6f89 /keyboards/40percentclub/4pack
parent5426a7a129acf2ff5c8b435014747f1238e17965 (diff)
Update GPIO API usage in keyboard code (#23361)
Diffstat (limited to 'keyboards/40percentclub/4pack')
-rw-r--r--keyboards/40percentclub/4pack/4pack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/40percentclub/4pack/4pack.c b/keyboards/40percentclub/4pack/4pack.c
index bd2efa5620..044ce45681 100644
--- a/keyboards/40percentclub/4pack/4pack.c
+++ b/keyboards/40percentclub/4pack/4pack.c
@@ -23,8 +23,8 @@ void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
- setPinOutput(F4); // cathodes
- setPinOutput(F5); // cathodes
+ gpio_set_pin_output(F4); // cathodes
+ gpio_set_pin_output(F5); // cathodes
// Do the rest
matrix_init_user();