aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/lfkeyboards/lfk87
diff options
context:
space:
mode:
authorRyan2024-05-03 07:21:29 +0200
committerGitHub2024-05-03 07:21:29 +0200
commitd09a06a1b354760fd0e64a453abade972900e885 (patch)
tree88d94640f4507ac8d7f570607423825bec3c6f89 /keyboards/lfkeyboards/lfk87
parent5426a7a129acf2ff5c8b435014747f1238e17965 (diff)
Update GPIO API usage in keyboard code (#23361)
Diffstat (limited to 'keyboards/lfkeyboards/lfk87')
-rw-r--r--keyboards/lfkeyboards/lfk87/lfk87.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/lfkeyboards/lfk87/lfk87.c b/keyboards/lfkeyboards/lfk87/lfk87.c
index 849f0ebcc5..480a44ea84 100644
--- a/keyboards/lfkeyboards/lfk87/lfk87.c
+++ b/keyboards/lfkeyboards/lfk87/lfk87.c
@@ -12,8 +12,8 @@ void matrix_init_kb(void)
matrix_init_user();
#ifndef AUDIO_ENABLE
// If we're not using the audio pin, drive it low
- setPinOutput(C6);
- writePinLow(C6);
+ gpio_set_pin_output(C6);
+ gpio_write_pin_low(C6);
#endif
#ifdef WATCHDOG_ENABLE
// This is done after turning the layer LED red, if we're caught in a loop