Fork of https://developer.mbed.org/users/bscott/code/STM32_USBDevice/
Fork of STM32_USBDevice by
Diff: USBDevice/USBHAL_STM32L1.cpp
- Revision:
- 79:d28244984385
- Parent:
- 76:eef92651f52f
--- a/USBDevice/USBHAL_STM32L1.cpp Fri Oct 27 17:22:45 2017 +0200 +++ b/USBDevice/USBHAL_STM32L1.cpp Wed Jul 25 14:04:48 2018 +0200 @@ -255,9 +255,9 @@ return EP_COMPLETED; } -EP_STATUS USBHAL::endpointWrite(uint8_t endpoint, uint8_t *data, uint32_t size) { +EP_STATUS USBHAL::endpointWrite(uint8_t endpoint, const uint8_t *data, uint32_t size) { core_util_critical_section_enter(); - HAL_PCD_EP_Transmit(&hpcd_USB_FS, endpoint>>1, data, size); + HAL_PCD_EP_Transmit(&hpcd_USB_FS, endpoint>>1, const_cast<uint8_t*>(data), size); epComplete &= ~(1 << endpoint); core_util_critical_section_exit(); return EP_PENDING;