diff --git a/common/uart.c b/common/uart.c index e9430b3a..46b28765 100644 --- a/common/uart.c +++ b/common/uart.c @@ -92,7 +92,6 @@ void UART4Print(const char* str) // // Write the next character to the UART. // - //MAP_UARTCharPutNonBlocking(UART4_BASE, str[i]); MAP_UARTCharPut(UART4_BASE, str[i]); } @@ -107,7 +106,6 @@ void UARTPrint(uint32_t uart_base, const char* str) // // Write the next character to the UART. // - //MAP_UARTCharPutNonBlocking(UART4_BASE, str[i]); MAP_UARTCharPut(uart_base, str[i]); } diff --git a/common/uart.h b/common/uart.h index e79d66e5..3dd93481 100644 --- a/common/uart.h +++ b/common/uart.h @@ -12,7 +12,8 @@ #include -// Initialize UART4. Assumes pin definitions were already run. +// Initialize UART4 and 1. Assumes pin definitions were already run. +void UART1Init(uint32_t ui32SysClock); void UART4Init(uint32_t ui32SysClock);