mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
d9de61cbad
This commit removes the ability to reserve a header in the data buffer of an allocated URB. The header was required for a now defunct implementation of a synchronous USB Host library API. Thus, headers are no longer required in URB data buffers.
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "esp_heap_caps.h"
|
|
#include "usb_private.h"
|
|
#include "usb/usb_types_ch9.h"
|
|
|
|
urb_t *urb_alloc(size_t data_buffer_size, int num_isoc_packets)
|
|
{
|
|
urb_t *urb = heap_caps_calloc(1, sizeof(urb_t) + (sizeof(usb_isoc_packet_desc_t) * num_isoc_packets), MALLOC_CAP_DEFAULT);
|
|
uint8_t *data_buffer = heap_caps_malloc(data_buffer_size, MALLOC_CAP_DMA);
|
|
if (urb == NULL || data_buffer == NULL) {
|
|
goto err;
|
|
}
|
|
// Cast as dummy transfer so that we can assign to const fields
|
|
usb_transfer_dummy_t *dummy_transfer = (usb_transfer_dummy_t *)&urb->transfer;
|
|
dummy_transfer->data_buffer = data_buffer;
|
|
dummy_transfer->data_buffer_size = data_buffer_size;
|
|
dummy_transfer->num_isoc_packets = num_isoc_packets;
|
|
return urb;
|
|
err:
|
|
heap_caps_free(urb);
|
|
heap_caps_free(data_buffer);
|
|
return NULL;
|
|
}
|
|
|
|
void urb_free(urb_t *urb)
|
|
{
|
|
if (urb == NULL) {
|
|
return;
|
|
}
|
|
heap_caps_free(urb->transfer.data_buffer);
|
|
heap_caps_free(urb);
|
|
}
|