summaryrefslogtreecommitdiff
path: root/supervisor/shared/workflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'supervisor/shared/workflow.c')
-rw-r--r--supervisor/shared/workflow.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/supervisor/shared/workflow.c b/supervisor/shared/workflow.c
index 4986c0957..9aac7c4d0 100644
--- a/supervisor/shared/workflow.c
+++ b/supervisor/shared/workflow.c
@@ -36,7 +36,9 @@ void supervisor_workflow_reset(void) {
// Not that some chips don't notice when USB is unplugged after first being plugged in,
// so this is not perfect, but tud_suspended() check helps.
bool supervisor_workflow_connecting(void) {
- return tud_connected() && !tud_suspended();
+ return true;
+ // TODO: Use the below once we've updated TinyUSB for the RP2040.
+ // return tud_connected() && !tud_suspended();
}
// Return true if host has completed connection to us (such as USB enumeration).