Basic set of APIs for dealing with network packet buffers. More...
Functions | |
whd_result_t | cy_host_buffer_get (whd_buffer_t *buffer, whd_buffer_dir_t direction, unsigned short size, unsigned long timeout_ms) |
Allocates a packet buffer. More... | |
void | cy_buffer_release (whd_buffer_t buffer, whd_buffer_dir_t direction) |
Releases a packet buffer. More... | |
uint8_t * | cy_buffer_get_current_piece_data_pointer (whd_buffer_t buffer) |
Retrieves the current pointer of a packet buffer. More... | |
uint16_t | cy_buffer_get_current_piece_size (whd_buffer_t buffer) |
Retrieves the size of a packet buffer. More... | |
whd_result_t | cy_buffer_set_size (whd_buffer_t buffer, unsigned short size) |
Sets the current size of a WHD packet. More... | |
whd_result_t | cy_buffer_add_remove_at_front (whd_buffer_t *buffer, int32_t add_remove_amount) |
Moves the current pointer of a packet buffer. More... | |
void | cy_network_process_ethernet_data (whd_interface_t interface, whd_buffer_t buffer) |
Called by WHD to pass received data to the network stack. More... | |
Basic set of APIs for dealing with network packet buffers.
whd_result_t cy_buffer_add_remove_at_front | ( | whd_buffer_t * | buffer, |
int32_t | add_remove_amount | ||
) |
Moves the current pointer of a packet buffer.
Since packet buffers usually need to be created with space at the front for additional headers, this function allows WHD to move the current 'front' location pointer so that it has space to add headers to transmit packets, and so that the network stack does not see the internal WHD headers on received packets.
buffer | : A pointer to the handle of the current packet buffer for which the current pointer will be moved. On return this may contain a pointer to a newly allocated packet buffer which has been daisy chained to the front of the given one. This would be the case if the given packet buffer didn't have enough space at the front. |
add_remove_amount | : This is the number of bytes to move the current pointer of the packet buffer - a negative value increases the space for headers at the front of the packet, a positive value decreases the space. |
uint8_t* cy_buffer_get_current_piece_data_pointer | ( | whd_buffer_t | buffer | ) |
Retrieves the current pointer of a packet buffer.
Since packet buffers usually need to be created with space at the front for additional headers, this function allows WHD to get the current 'front' location pointer.
buffer | : The handle of the packet buffer whose pointer is to be retrieved |
uint16_t cy_buffer_get_current_piece_size | ( | whd_buffer_t | buffer | ) |
Retrieves the size of a packet buffer.
Since packet buffers usually need to be created with space at the front for additional headers, the memory block used to contain a packet buffer will often be larger than the current size of the packet buffer data. This function allows WHD to retrieve the current size of a packet buffer's data.
buffer | : The handle of the packet buffer whose size is to be retrieved |
void cy_buffer_release | ( | whd_buffer_t | buffer, |
whd_buffer_dir_t | direction | ||
) |
Releases a packet buffer.
This function is used by WHD to indicate that it no longer requires a packet buffer. The buffer can then be released back into a pool for reuse, or the dynamically allocated memory can be freed, according to how the packet was allocated. Returns void since WHD cannot do anything about failures
buffer | : The handle of the packet buffer to be released |
direction | : Indicates transmit/receive direction that the packet buffer has been used for. This might be needed if tx/rx pools are separate. |
whd_result_t cy_buffer_set_size | ( | whd_buffer_t | buffer, |
unsigned short | size | ||
) |
Sets the current size of a WHD packet.
This function sets the current length of a WHD packet buffer
buffer | : The packet to be modified |
size | : The new size of the packet buffer |
whd_result_t cy_host_buffer_get | ( | whd_buffer_t * | buffer, |
whd_buffer_dir_t | direction, | ||
unsigned short | size, | ||
unsigned long | timeout_ms | ||
) |
Allocates a packet buffer.
Attempts to allocate a packet buffer of the size requested. It can do this by allocating a pre-existing packet from a pool, using a static buffer, or by dynamically allocating memory. The method of allocation does not concern WHD, however it must match the way the network stack expects packet buffers to be allocated. Usually WHD requires packet of size of WHD_LINK_MTU which includes the MTU. Refer to whd_types.h to find the size of WHD_LINK_MTU.
buffer | : A pointer which receives the allocated packet buffer handle |
direction | : Indicates transmit/receive direction that the packet buffer is used for. This may be needed if tx/rx pools are separate. |
size | : The number of bytes to allocate. |
timeout_ms | Time to wait for a packet buffer to be available |
void cy_network_process_ethernet_data | ( | whd_interface_t | interface, |
whd_buffer_t | buffer | ||
) |
Called by WHD to pass received data to the network stack.
Packets received from the Wi-Fi network by WHD are forwarded to by calling function ptr which must be implemented in the network interface. Ethernet headers are present at the start of these packet buffers.
This function is called asynchronously in the context of the WHD thread whenever new data has arrived. Packet buffers are allocated within WHD, and ownership is transferred to the network stack. The network stack or application is thus responsible for releasing the packet buffers. Most packet buffering systems have a pointer to the 'current point' within the packet buffer. When this function is called, the pointer points to the start of the Ethernet header. There is other inconsequential data before the Ethernet header.
It is preferable that the (whd_network_process_ethernet_data)() function simply puts the received packet on a queue for processing by another thread. This avoids the WHD thread being unnecessarily tied up which would delay other packets being transmitted or received.
interface | : The interface on which the packet was received. |
buffer | : Handle of the packet which has just been received. Responsibility for releasing this buffer is transferred from WHD at this point. |