HAL
UART_Start_Receive_IT() is only used within HAL.
 
Symbols
loading...
Files
loading...

UART_Start_Receive_IT() function

Start Receive operation in interrupt mode.

Syntax

HAL_StatusTypeDef UART_Start_Receive_IT(UART_HandleTypeDef *huart,     uint8_t *pData,     uint16_t Size);
Implemented in stm32f4xx_hal_uart.c:3236

Arguments

huart

UART handle.

pData

Pointer to data buffer (u8 or u16 data elements).

Size

Amount of data elements (u8 or u16) to be received.

Return value

HAL status

Notes

This function could be called by all HAL UART API providing reception in Interrupt mode. When calling this function, parameters validity is considered as already checked, i.e. Rx State, buffer address, ... UART Handle is assumed as Locked.