do { \
static
ewf_interface ewf_interface_ra_uart__interface__##interface_name_symb = {0}; \
EWF_PLATFORM_QUEUE_STATIC_DECLARE( \
ewf_interface_ra_uart__implementation__##interface_name_symb.rx_queue_ptr, \
ewf_interface_ra_uart__uart_rx_queue__##interface_name_symb, \
uint8_t, \
EWF_INTERFACE_RA_UART_CONFIG_UART_RX_QUEUE_SIZE); \
EWF_PLATFORM_QUEUE_STATIC_DECLARE( \
ewf_interface_ra_uart__interface__##interface_name_symb.response_queue_ptr, \
ewf_interface_ra_uart__response_queue__##interface_name_symb, \
EWF_INTERFACE_RA_UART_CONFIG_RESPONSE_QUEUE_SIZE); \
EWF_PLATFORM_QUEUE_STATIC_DECLARE( \
ewf_interface_ra_uart__interface__##interface_name_symb.urc_queue_ptr, \
ewf_interface_ra_uart__urc_queue__##interface_name_symb, \
EWF_INTERFACE_RA_UART_CONFIG_URC_QUEUE_SIZE); \
ewf_interface_ra_uart__interface__##interface_name_symb.implementation_ptr = &(ewf_interface_ra_uart__implementation__##interface_name_symb); \
interface_ptr = &(ewf_interface_ra_uart__interface__##interface_name_symb); \
EWF_INTERFACE_RA_UART_INITIALIZE_HEADER(interface_ptr); \
} while(0)
ewf_result ewf_interface_ra_uart_hardware_send(ewf_interface *interface_ptr, const uint8_t *buffer_ptr, uint32_t buffer_length)
Send a buffer using the RA UART hardware interface.
Definition: ewf_interface_ra_uart.c:102
ewf_result ewf_interface_ra_uart_hardware_stop(ewf_interface *interface_ptr)
Stop the RA UART hardware interface.
Definition: ewf_interface_ra_uart.c:87
ewf_result ewf_interface_ra_uart_hardware_receive(ewf_interface *interface_ptr, uint8_t *buffer_ptr, uint32_t *buffer_length_ptr, bool wait)
Receive a buffer using the RA UART hardware interface.
Definition: ewf_interface_ra_uart.c:142
ewf_result ewf_interface_ra_uart_hardware_start(ewf_interface *interface_ptr)
Start the RA UART hardware interface.
Definition: ewf_interface_ra_uart.c:62
The RA UART interface implementation data structure type.
Definition: ewf_interface_ra_uart.h:52
The interface structure definition.
Definition: ewf_interface.h:66
The interface message structure definition.
Definition: ewf_message.h:27
Declare a RA UART HOST interface.