From e6c02279964dad90a5ad626bc45307d8bbba34ae Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Sat, 15 Nov 2025 21:11:57 +0100 Subject: [PATCH] Fix VIDPID PHY Read. Signed-off-by: Pol Henarejos --- src/usb/usb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/usb/usb.c b/src/usb/usb.c index 5a39056..e040e8b 100644 --- a/src/usb/usb.c +++ b/src/usb/usb.c @@ -83,6 +83,7 @@ void usb_init() { else { phy_data.vid = desc_device.idVendor; phy_data.pid = desc_device.idProduct; + phy_data.vidpid_present = true; } mutex_init(&mutex); #endif