summaryrefslogtreecommitdiff
path: root/src/portable
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-04-22 01:06:17 +0700
committerhathach <[email protected]>2022-04-22 01:06:17 +0700
commit12debd7763bfc6f55566e5f4f8c982a55f206815 (patch)
treecd259b20fbf24aae5f8a3232274ba64a76720cb1 /src/portable
parent98bbb0d40251a4fb6af8e20506c5b27a18e8d29e (diff)
keep up with pio usb
Diffstat (limited to 'src/portable')
-rw-r--r--src/portable/raspberrypi/pio_usb/dcd_pio_usb.c10
-rw-r--r--src/portable/raspberrypi/pio_usb/hcd_pio_usb.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/src/portable/raspberrypi/pio_usb/dcd_pio_usb.c b/src/portable/raspberrypi/pio_usb/dcd_pio_usb.c
index 38867ea1c..1cb850654 100644
--- a/src/portable/raspberrypi/pio_usb/dcd_pio_usb.c
+++ b/src/portable/raspberrypi/pio_usb/dcd_pio_usb.c
@@ -119,8 +119,8 @@ void dcd_edpt_close_all (uint8_t rhport)
bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t total_bytes)
{
(void) rhport;
- pio_hw_endpoint_t *ep = pio_usb_device_get_ep(ep_addr);
- return pio_usb_endpoint_transfer(ep, buffer, total_bytes);
+ endpoint_t *ep = pio_usb_device_get_ep(ep_addr);
+ return pio_usb_ll_endpoint_transfer(ep, buffer, total_bytes);
}
// Submit a transfer where is managed by FIFO, When complete dcd_event_xfer_complete() is invoked to notify the stack - optional, however, must be listed in usbd.c
@@ -137,7 +137,7 @@ bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t
void dcd_edpt_stall (uint8_t rhport, uint8_t ep_addr)
{
(void) rhport;
- pio_hw_endpoint_t *ep = pio_usb_device_get_ep(ep_addr);
+ endpoint_t *ep = pio_usb_device_get_ep(ep_addr);
ep->stalled = true;
}
@@ -145,7 +145,7 @@ void dcd_edpt_stall (uint8_t rhport, uint8_t ep_addr)
void dcd_edpt_clear_stall (uint8_t rhport, uint8_t ep_addr)
{
(void) rhport;
- pio_hw_endpoint_t *ep = pio_usb_device_get_ep(ep_addr);
+ endpoint_t *ep = pio_usb_device_get_ep(ep_addr);
ep->data_id = 0;
ep->stalled = false;
}
@@ -188,7 +188,7 @@ static void __no_inline_not_in_flash_func(handle_endpoint_irq)(pio_hw_root_port_
if (ep_all & mask)
{
- pio_hw_endpoint_t* ep = PIO_USB_HW_EP(ep_idx);
+ endpoint_t* ep = PIO_USB_HW_EP(ep_idx);
uint8_t const tu_rhport = port - PIO_USB_HW_RPORT(0) + 1;
dcd_event_xfer_complete(tu_rhport, ep->ep_num, ep->actual_len, result, true);
}
diff --git a/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c b/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
index e311f16d0..2615b2356 100644
--- a/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
+++ b/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
@@ -73,7 +73,7 @@ bool hcd_port_connect_status(uint8_t rhport)
rhport = RHPORT_PIO(rhport);
pio_hw_root_port_t *root = PIO_USB_HW_RPORT(rhport);
- port_pin_status_t line_state = pio_hw_get_line_state(root);
+ port_pin_status_t line_state = pio_usb_ll_get_line_state(root);
return line_state != PORT_PIN_SE0;
}
@@ -187,7 +187,7 @@ static void __no_inline_not_in_flash_func(handle_endpoint_irq)(pio_hw_root_port_
if (ep_all & mask)
{
- pio_hw_endpoint_t* ep = PIO_USB_HW_EP(ep_idx);
+ endpoint_t* ep = PIO_USB_HW_EP(ep_idx);
hcd_event_xfer_complete(ep->dev_addr, ep->ep_num, ep->actual_len, result, true);
}
}