| 132 | } |
| 133 | |
| 134 | void UART_ClearInt(UART0_Type* UARTx, uint32_t Int) { |
| 135 | assert_param(IS_UART_ALL_PERIPH(UARTx)); |
| 136 | assert_param(IS_UART_INT(Int)); |
| 137 | |
| 138 | UARTx->INT_SEEN = Int; |
| 139 | } |
| 140 | |
| 141 | uint8_t UART_Write(UART0_Type* UARTx, uint8_t Size, uint8_t* Data) { |
| 142 | uint8_t count; |
no outgoing calls
no test coverage detected