From c8f142d6fadb592699b57ecc6e8a02dab920d235 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sun, 14 May 2017 12:28:17 +0200 Subject: Start USB API rewrite by wrapping submit_transfer() around the old write() method. --- usb/dwc_otg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usb/dwc_otg.h') diff --git a/usb/dwc_otg.h b/usb/dwc_otg.h index 56a317f..c5e0534 100644 --- a/usb/dwc_otg.h +++ b/usb/dwc_otg.h @@ -210,7 +210,7 @@ class USB_otg : public USB_generic { return (otg.dev_iep_reg[ep].DIEPCTL & 0x80008000) == 0x8000; } - virtual void write(uint32_t ep, uint32_t* bufp, uint32_t len) { + virtual void hw_write(uint32_t ep, uint32_t* bufp, uint32_t len) override { usb_rblog.log("Writing, ep=%d, len=%d", ep, len); otg.dev_iep_reg[ep].DIEPTSIZ = (1 << 19) | len; -- cgit v1.2.3