1.8.7.3 1.25.6.3 1.26.5.3 1.27.5.3 1.28.6.3 1.36.7.3 1.41.5.3 1.42.3.3 FLEXCOMx_USART_WriteIsBusy Function
C
/* x = FLEXCOM instance number */
/* Non-blocking mode */
bool FLEXCOMx_USART_WriteIsBusy( void )
Summary
Returns the write request status associated with the given USART peripheral instance
Description
This function returns the write request status associated with the given USART peripheral instance. It can be used to check the completion status of the FLEXCOMx_USART_Write() function when the library is configured for non-blocking (interrupt) mode. In that, the function can be used as an alternative to using a callback function to check for completion.
Precondition
FLEXCOMx_USART_Initialize must have been called for the associated USART instance.
Parameters
None.
Returns
true - USART is busy in processing the previous write request.
false - USART is free and ready to accept a new write request.
Example
if(FLEXCOM0_USART_WriteIsBusy() == true) { //USART is currently processing the previous write request. //Wait to submit new request. }
Remarks
None