// uart.h
typedef enum {
UartSuccess,
UartNoData,
UartError,
UartNotReady
} UART_STATUS, *PUART_STATUS;
View the official Windows Driver Kit DDI referenceNo description available.
Defines values for the status of a UART operation.
UartSuccessThe operation was successful, for example if data was available.
UartNoDataNo data is available, but not due to an error condition.
UartErrorA UART error such as overrun, parity, framing, etc.
UartNotReadyThe device is not ready.