diff options
-rw-r--r-- | src/fmc-test/src/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/fmc-test/src/main.c b/src/fmc-test/src/main.c index 7275aac..305abb5 100644 --- a/src/fmc-test/src/main.c +++ b/src/fmc-test/src/main.c @@ -73,6 +73,13 @@ int main(void) // initialize UART for debug output MX_USART2_UART_Init(); + volatile uint32_t hclk; + + hclk = HAL_RCC_GetHCLKFreq(); + uart_send_string("HCLK: "); + uart_send_integer(hclk, 0); + uart_send_string("\r\n"); + uart_send_string("Keep calm for Novena boot...\r\n"); // Blink blue LED for six seconds to not upset the Novena at boot. |