Browse Source

[bsp] Add another fix similar to checking for I2Cx

lxqyyds 2 years ago
parent
commit
b4c3086d2e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      bsp/CME_M7/StdPeriph_Driver/src/cmem7_uart.c

+ 2 - 1
bsp/CME_M7/StdPeriph_Driver/src/cmem7_uart.c

@@ -37,7 +37,8 @@
 
 static uint32_t UART_GetClock(UART0_Type* UARTx) {
     uint32_t dividor;
-
+    assert_param(IS_UART_ALL_PERIPH(UARTx));
+    
     if ((uint32_t)UARTx == (uint32_t)UART0) {
         dividor = GLOBAL_CTRL->CLK_SEL_0_b.UART0_CLK;
     } else if ((uint32_t)UARTx == (uint32_t)UART1) {