Home
last modified time | relevance | path

Searched refs:pRB (Results 1 – 2 of 2) sorted by relevance

/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/src/
A Duart_15xx.c175 void Chip_UART_RXIntHandlerRB(LPC_USART_T *pUART, RINGBUFF_T *pRB) in Chip_UART_RXIntHandlerRB() argument
180 RingBuffer_Insert(pRB, &ch); in Chip_UART_RXIntHandlerRB()
185 void Chip_UART_TXIntHandlerRB(LPC_USART_T *pUART, RINGBUFF_T *pRB) in Chip_UART_TXIntHandlerRB() argument
191 RingBuffer_Pop(pRB, &ch)) { in Chip_UART_TXIntHandlerRB()
197 uint32_t Chip_UART_SendRB(LPC_USART_T *pUART, RINGBUFF_T *pRB, const void *data, int count) in Chip_UART_SendRB() argument
206 ret = RingBuffer_InsertMult(pRB, p8, count); in Chip_UART_SendRB()
207 Chip_UART_TXIntHandlerRB(pUART, pRB); in Chip_UART_SendRB()
210 ret += RingBuffer_InsertMult(pRB, (p8 + ret), (count - ret)); in Chip_UART_SendRB()
219 int Chip_UART_ReadRB(LPC_USART_T *pUART, RINGBUFF_T *pRB, void *data, int bytes) in Chip_UART_ReadRB() argument
223 return RingBuffer_PopMult(pRB, (uint8_t *) data, bytes); in Chip_UART_ReadRB()
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/
A Duart_15xx.h377 void Chip_UART_RXIntHandlerRB(LPC_USART_T *pUART, RINGBUFF_T *pRB);
388 void Chip_UART_TXIntHandlerRB(LPC_USART_T *pUART, RINGBUFF_T *pRB);
401 uint32_t Chip_UART_SendRB(LPC_USART_T *pUART, RINGBUFF_T *pRB, const void *data, int count);
414 int Chip_UART_ReadRB(LPC_USART_T *pUART, RINGBUFF_T *pRB, void *data, int bytes);

Completed in 4 milliseconds