Lines Matching refs:BytePtr
49 UartPtr->SendBuffer.BytePtr = NULL; in FUart_CfgInitialize()
53 UartPtr->ReceiveBuffer.BytePtr = NULL; in FUart_CfgInitialize()
88 u32 FUart_Send(Ft_Uart *UartPtr, u8 *BytePtr, u32 Length) in FUart_Send() argument
93 Ft_assertNonvoid(BytePtr != NULL); in FUart_Send()
104 UartPtr->SendBuffer.BytePtr = BytePtr; in FUart_Send()
160 …_WriteReg(UartPtr->Config.BaseAddress, UARTDR_OFFSET, (u32)UartPtr->SendBuffer.BytePtr[SentCount]); in FUart_SendBuffer()
165 UartPtr->SendBuffer.BytePtr += SentCount; in FUart_SendBuffer()
183 u32 FUart_Receive(Ft_Uart *UartPtr, u8 *BytePtr, u32 Length) in FUart_Receive() argument
189 Ft_assertNonvoid(BytePtr != NULL); in FUart_Receive()
199 UartPtr->ReceiveBuffer.BytePtr = BytePtr; in FUart_Receive()
240 UartPtr->ReceiveBuffer.BytePtr[ReceivedCount] = (u8)(ByteValue & 0xff); in FUart_ReceiveBuffer()
246 if (UartPtr->ReceiveBuffer.BytePtr != NULL) in FUart_ReceiveBuffer()
248 UartPtr->ReceiveBuffer.BytePtr += ReceivedCount; in FUart_ReceiveBuffer()
263 void FUart_BlockSend(Ft_Uart *UartPtr, u8 *BytePtr, u32 Length) in FUart_BlockSend() argument
268 Ft_assertVoid(BytePtr != NULL); in FUart_BlockSend()
273 FUart_SendByte(UartPtr->Config.BaseAddress, BytePtr[index]); in FUart_BlockSend()