Fix duplicate is_isr parameter in dcd_dwc2.c

Co-authored-by: HiFiPhile <4375114+HiFiPhile@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-22 05:32:08 +00:00
parent c084d36fce
commit 16cfe6895a
5 changed files with 5 additions and 1 deletions

Submodule hw/mcu/raspberry_pi/Pico-PIO-USB added at 675543bcc9

Submodule hw/mcu/st/cmsis_device_f4 added at 3c77349ce0

Submodule hw/mcu/st/stm32f4xx_hal_driver added at b6f0ed3829

1
lib/CMSIS_5 Submodule

Submodule lib/CMSIS_5 added at 2b7495b853

View File

@ -457,7 +457,7 @@ void dcd_set_address(uint8_t rhport, uint8_t dev_addr) {
dwc2->dcfg = (dwc2->dcfg & ~DCFG_DAD_Msk) | (dev_addr << DCFG_DAD_Pos);
// Response with status after changing device address
dcd_edpt_xfer(rhport, tu_edpt_addr(0, TUSB_DIR_IN), NULL, 0, false, false);
dcd_edpt_xfer(rhport, tu_edpt_addr(0, TUSB_DIR_IN), NULL, 0, false);
}
void dcd_remote_wakeup(uint8_t rhport) {