| 121 | } |
| 122 | |
| 123 | BOOL UART_GetIntStatus(UART0_Type* UARTx, uint32_t Int) { |
| 124 | assert_param(IS_UART_ALL_PERIPH(UARTx)); |
| 125 | assert_param(IS_UART_INT(Int)); |
| 126 | |
| 127 | if (0 != (UARTx->INT_SEEN & Int)) { |
| 128 | return TRUE; |
| 129 | } |
| 130 | |
| 131 | return FALSE; |
| 132 | } |
| 133 | |
| 134 | void UART_ClearInt(UART0_Type* UARTx, uint32_t Int) { |
| 135 | assert_param(IS_UART_ALL_PERIPH(UARTx)); |
no outgoing calls
no test coverage detected