diff options
| author | copilot-swe-agent[bot] <[email protected]> | 2025-10-22 05:32:08 +0000 |
|---|---|---|
| committer | copilot-swe-agent[bot] <[email protected]> | 2025-10-22 05:32:08 +0000 |
| commit | 16cfe6895a4ee6d6b196e99a033a7326908f8d8a (patch) | |
| tree | 8cb2bba872f924045b2ab676ae3ab16a345eb056 | |
| parent | c084d36fce953e0f73ba827b0fea687a2a0601d7 (diff) | |
Fix duplicate is_isr parameter in dcd_dwc2.c
Co-authored-by: HiFiPhile <[email protected]>
| m--------- | hw/mcu/raspberry_pi/Pico-PIO-USB | 0 | ||||
| m--------- | hw/mcu/st/cmsis_device_f4 | 0 | ||||
| m--------- | hw/mcu/st/stm32f4xx_hal_driver | 0 | ||||
| m--------- | lib/CMSIS_5 | 0 | ||||
| -rw-r--r-- | src/portable/synopsys/dwc2/dcd_dwc2.c | 2 |
5 files changed, 1 insertions, 1 deletions
diff --git a/hw/mcu/raspberry_pi/Pico-PIO-USB b/hw/mcu/raspberry_pi/Pico-PIO-USB new file mode 160000 +Subproject 675543bcc9baa8170f868ab7ba316d418dbcf41 diff --git a/hw/mcu/st/cmsis_device_f4 b/hw/mcu/st/cmsis_device_f4 new file mode 160000 +Subproject 3c77349ce04c8af401454cc51f85ea9a50e34fc diff --git a/hw/mcu/st/stm32f4xx_hal_driver b/hw/mcu/st/stm32f4xx_hal_driver new file mode 160000 +Subproject b6f0ed3829f3829eb358a2e7417d80bba1a42db diff --git a/lib/CMSIS_5 b/lib/CMSIS_5 new file mode 160000 +Subproject 2b7495b8535bdcb306dac29b9ded4cfb679d7e5 diff --git a/src/portable/synopsys/dwc2/dcd_dwc2.c b/src/portable/synopsys/dwc2/dcd_dwc2.c index f3a0ee7fc..ab30a06e8 100644 --- a/src/portable/synopsys/dwc2/dcd_dwc2.c +++ b/src/portable/synopsys/dwc2/dcd_dwc2.c @@ -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) { |
