[Keyboard] Updates for Tractyl Manuform config (#14641)

This commit is contained in:
Drashna Jaelre
2021-09-29 09:30:25 -07:00
committed by GitHub
parent 363eb645fc
commit 0338481090
12 changed files with 261 additions and 10 deletions

View File

@@ -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);
}