int main() { MX_USART1_UART_Init(); // UART1를 Parameter 설정한 대로 초기화 char senddata[20] = "hello world\r\n"; // hello world 문구를 COM3 Port로 송신 while(1) { HAL_UART_Transmit(&huart1, senddata, strlen(senddata), 1000); // uar1 TX로 hello world를 보낸다. HAL_Delay(1000); // 1초 딜레이 } }