Setup UART on NUCLEO-H7S3L8 Board
Hello everyone,
im trying to send a simple "Hello World" via UART to my Laptop and read in the PuTTY Terminal on my on NUCLEO-H7S3L8 Board, But i tried everything, i cant revieve anything!!! Tried every UART/USART Port in the CubeMX. Nothing on my other NUCLEO-F303RE worked it instantly.
These are settings in the CubeMX. i Used USART3 and selected Pins PD8 and PD9. i connected the Board to my Laptop. Set the Baud Rate to 115200 and also looked up the correct COM Port. Here is the test code and see Screenshots below.
Maybe something in the CubeProgrammer???
UART_HandleTypeDef huart3;
/* USER CODE BEGIN PV */
uint8_t tx_buffer[] = "Hello World!\r\n";
...
while (1)
{
/* USER CODE END WHILE */
HAL_UART_Transmit(&huart3, tx_buffer, sizeof(tx_buffer), 100);
HAL_Delay(100);
/* USER CODE BEGIN 3 */
}
/* USER CODE END 3 */
}


