summaryrefslogtreecommitdiff
path: root/firmware/usbstack/usb_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/usbstack/usb_core.c')
-rw-r--r--firmware/usbstack/usb_core.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/usbstack/usb_core.c b/firmware/usbstack/usb_core.c
index 218b297455..eef963cf8a 100644
--- a/firmware/usbstack/usb_core.c
+++ b/firmware/usbstack/usb_core.c
@@ -285,10 +285,14 @@ static int usb_address = 0;
285static bool initialized = false; 285static bool initialized = false;
286static enum { DEFAULT, ADDRESS, CONFIGURED } usb_state; 286static enum { DEFAULT, ADDRESS, CONFIGURED } usb_state;
287 287
288#ifdef USB_STORAGE
288static bool usb_core_storage_enabled = false; 289static bool usb_core_storage_enabled = false;
290#endif
289/* Next one is non-static, to enable setting it from the debug menu */ 291/* Next one is non-static, to enable setting it from the debug menu */
290bool usb_core_serial_enabled = false; 292bool usb_core_serial_enabled = false;
293#ifdef USB_CHARGING_ONLY
291static bool usb_core_charging_enabled = false; 294static bool usb_core_charging_enabled = false;
295#endif
292#if defined(USB_BENCHMARK) 296#if defined(USB_BENCHMARK)
293static bool usb_core_benchmark_enabled = false; 297static bool usb_core_benchmark_enabled = false;
294#endif 298#endif