We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 111515a commit 988eeb5Copy full SHA for 988eeb5
src/portable/raspberrypi/rp2040/dcd_rp2040.c
@@ -88,7 +88,7 @@ static void _hw_endpoint_alloc(struct hw_endpoint *ep, uint8_t transfer_type)
88
uint dpram_offset = hw_data_offset(ep->hw_data_buf);
89
hard_assert(hw_data_offset(next_buffer_ptr) <= USB_DPRAM_MAX);
90
91
- pico_info(" Alloced %d bytes at offset 0x%x (0x%p)\r\n", size, dpram_offset, ep->hw_data_buf);
+ pico_info(" Allocated %d bytes at offset 0x%x (0x%p)\r\n", size, dpram_offset, ep->hw_data_buf);
92
93
// Fill in endpoint control register with buffer offset
94
uint32_t const reg = EP_CTRL_ENABLE_BITS | ((uint)transfer_type << EP_CTRL_BUFFER_TYPE_LSB) | dpram_offset;
0 commit comments