@brief Determine if the given uart is a standard UART */
| 175 | /** @brief Determine if the given uart is a standard UART |
| 176 | */ |
| 177 | __forceinline bool is_standard_uart(int uart_nr) |
| 178 | { |
| 179 | return (uart_nr >= 0) && (uart_nr < SOC_UART_NUM); |
| 180 | } |
| 181 | |
| 182 | __forceinline bool is_standard_uart(smg_uart_t* uart) |
| 183 | { |
no outgoing calls
no test coverage detected