diff options
author | Drashna Jaelre <drashna@live.com> | 2021-09-29 09:30:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 09:30:25 -0700 |
commit | 0338481090f4c2330a7fd237416cf66ba2bd4d22 (patch) | |
tree | 8c602d86d343c33794628d0d68c6bbee3b614de8 /keyboards/handwired/tractyl_manuform/5x6_right/f411/f411.c | |
parent | 363eb645fc524efecc63b723a4b6d92fce29beaa (diff) |
[Keyboard] Updates for Tractyl Manuform config (#14641)
Diffstat (limited to 'keyboards/handwired/tractyl_manuform/5x6_right/f411/f411.c')
-rw-r--r-- | keyboards/handwired/tractyl_manuform/5x6_right/f411/f411.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/keyboards/handwired/tractyl_manuform/5x6_right/f411/f411.c b/keyboards/handwired/tractyl_manuform/5x6_right/f411/f411.c index 240219f1d3..394c597b84 100644 --- a/keyboards/handwired/tractyl_manuform/5x6_right/f411/f411.c +++ b/keyboards/handwired/tractyl_manuform/5x6_right/f411/f411.c @@ -23,3 +23,9 @@ void matrix_scan_sub_kb(void) { reset_keyboard(); } } + +bool usb_vbus_state(void) { + setPinInputLow(USB_VBUS_PIN); + wait_us(5); + return readPin(USB_VBUS_PIN); +} |