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/technika/technika.c | |
parent | 5426a7a129acf2ff5c8b435014747f1238e17965 (diff) |
Update GPIO API usage in keyboard code (#23361)
Diffstat (limited to 'keyboards/technika/technika.c')
-rw-r--r-- | keyboards/technika/technika.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/technika/technika.c b/keyboards/technika/technika.c index cc60debe9f..65dc9e0d31 100644 --- a/keyboards/technika/technika.c +++ b/keyboards/technika/technika.c @@ -18,9 +18,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "quantum.h" void keyboard_pre_init_kb(void) { - setPinOutput(A15); - setPinOutput(B3); - setPinOutput(B4); + gpio_set_pin_output(A15); + gpio_set_pin_output(B3); + gpio_set_pin_output(B4); keyboard_pre_init_user(); } |