Question
Newbie Question (Nucleo-144+STM32L496zg) : LPUART shows no signs of life
I have tried with and without the Cube generated code but no luck getting LPUART to send any printable characters/bytes to an external TeraTerm terminal over VCOM.
I think I am missing some clocking or initialization step -- any help is appreciated.
Cheers
Ramanand
// ########################
int main(void)
{
HAL_Init();
SystemClock_Config();
MX_GPIO_Init();
MX_LPUART1_UART_Init();
}
return;
}