User Activity

I have STM32F407VG Discovery Board with meBut i am not able to see any output on Teraterm for UART programPB10 and PB11 pins are used as TX and RX of USART3PB10(TX) is connected to RX of CH340 USB to serial devicePB11(RX) is connected to TX of CH340 ...
#include "main.h"UART_HandleTypeDef huart3;uint8_t data[]="Hello world\n";void SystemClock_Config(void);static void MX_GPIO_Init(void);static void MX_USART3_UART_Init(void);int main(void){ HAL_Init(); SystemClock_Config(); MX_GPIO_Init(); MX_USART3_U...