summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/lufa/usb_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/protocol/lufa/usb_util.c')
-rw-r--r--tmk_core/protocol/lufa/usb_util.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tmk_core/protocol/lufa/usb_util.c b/tmk_core/protocol/lufa/usb_util.c
index 9691eff1e4..2e3b86b80e 100644
--- a/tmk_core/protocol/lufa/usb_util.c
+++ b/tmk_core/protocol/lufa/usb_util.c
@@ -22,13 +22,15 @@ void usb_disconnect(void) {
USB_DeviceState = DEVICE_STATE_Unattached;
}
-bool usb_connected_state(void) { return USB_Device_IsAddressSet(); }
+bool usb_connected_state(void) {
+ return USB_Device_IsAddressSet();
+}
#if defined(OTGPADE)
bool usb_vbus_state(void) {
- USB_OTGPAD_On(); // enables VBUS pad
+ USB_OTGPAD_On(); // enables VBUS pad
wait_us(5);
- return USB_VBUS_GetStatus(); // checks state of VBUS
+ return USB_VBUS_GetStatus(); // checks state of VBUS
}
#endif