From 9cd23ac140bb03145addcbea4268e3ff437b0a1f Mon Sep 17 00:00:00 2001 From: Mitchell Waite Date: Sun, 3 May 2026 20:05:46 -0400 Subject: [PATCH] Add call to usb_do_poll in the main loop - Allows end user to plug in a boot drive or a drive with a NAND image after the initial device enumeration --- source/lv2/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/lv2/main.c b/source/lv2/main.c index a477a91..ef5690f 100644 --- a/source/lv2/main.c +++ b/source/lv2/main.c @@ -234,6 +234,7 @@ int main(){ fileloop(); console_clrline(); + usb_do_poll(); // Refresh USB devices } return 0;