diff options
| author | Ryan | 2024-05-24 20:38:57 +0200 |
|---|---|---|
| committer | GitHub | 2024-05-24 20:38:57 +0200 |
| commit | b8f29c38652fb56fd122e61018778fd5355a8739 (patch) | |
| tree | f7bc313204854bc8c5a31435ada3bfed2d741b35 /keyboards/dtisaac | |
| parent | 8ff8e9eae5b20b1a0a6cafe7689bfc34188f7aa8 (diff) | |
Update GPIO macros in keymaps (#23792)
Diffstat (limited to 'keyboards/dtisaac')
| -rw-r--r-- | keyboards/dtisaac/dosa40rgb/keymaps/default/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/dtisaac/dosa40rgb/keymaps/default/keymap.c b/keyboards/dtisaac/dosa40rgb/keymaps/default/keymap.c index 92a10afc34..38db55938a 100644 --- a/keyboards/dtisaac/dosa40rgb/keymaps/default/keymap.c +++ b/keyboards/dtisaac/dosa40rgb/keymaps/default/keymap.c @@ -66,6 +66,6 @@ bool rgb_matrix_indicators_user(void) { } void keyboard_pre_init_user(void) { - setPinOutput(B5); - writePinLow(B5); + gpio_set_pin_output(B5); + gpio_write_pin_low(B5); } |