NUCLEO-H7A3ZI-Q USART2 not communicating with serial console
Originally a comment on this tutorial - moved to main forum for better visibility & discussion ...
I followed the first part of the tutorial (enabled USART2) and included the following code snippets for my STM32 NUCLEO-H7A3ZI-Q board.
/* USER CODE BEGIN PV */
uint8_t buffer[1];
/* USER CODE END PV */ /* USER CODE BEGIN 2 */
HAL_UART_Receive(&huart2, buffer, 1, 0xFFFF);
HAL_UART_Transmit(&huart2, buffer, 1, 0xFFFF);
/* USER CODE END 2 */ /* USER CODE BEGIN WHILE */
while (1)
{
HAL_GPIO_TogglePin(GPIOB, GPIO_PIN_0);
HAL_Delay(100);
/* USER CODE END WHILE */But I wasn't able to write any characters or anything on my serial console. Kindly give some suggestions.

