mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-06 05:25:29 +00:00
8 lines
152 B
C
8 lines
152 B
C
#include "Types.h"
|
|
#include "UsartTransmitBufferStatus.h"
|
|
|
|
bool Usart_ReadyToTransmit(void)
|
|
{
|
|
return (AT91C_BASE_US0->US_CSR & AT91C_US_TXRDY) > 0;
|
|
}
|