Searched refs:numBytes (Results 1 – 2 of 2) sorted by relevance
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/src/ |
A D | uart_15xx.c | 92 int Chip_UART_Send(LPC_USART_T *pUART, const void *data, int numBytes) in Chip_UART_Send() argument 98 while ((sent < numBytes) && in Chip_UART_Send() 114 while (numBytes > 0) { in Chip_UART_SendBlocking() 115 pass = Chip_UART_Send(pUART, p8, numBytes); in Chip_UART_SendBlocking() 116 numBytes -= pass; in Chip_UART_SendBlocking() 125 int Chip_UART_Read(LPC_USART_T *pUART, void *data, int numBytes) in Chip_UART_Read() argument 131 while ((readBytes < numBytes) && in Chip_UART_Read() 142 int Chip_UART_ReadBlocking(LPC_USART_T *pUART, void *data, int numBytes) in Chip_UART_ReadBlocking() argument 147 while (readBytes < numBytes) { in Chip_UART_ReadBlocking() 148 pass = Chip_UART_Read(pUART, p8, numBytes); in Chip_UART_ReadBlocking() [all …]
|
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/ |
A D | uart_15xx.h | 312 int Chip_UART_Send(LPC_USART_T *pUART, const void *data, int numBytes); 324 int Chip_UART_Read(LPC_USART_T *pUART, void *data, int numBytes); 354 int Chip_UART_SendBlocking(LPC_USART_T *pUART, const void *data, int numBytes); 366 int Chip_UART_ReadBlocking(LPC_USART_T *pUART, void *data, int numBytes);
|
Completed in 3 milliseconds