Solved
Forward Data from VCP to UART
How can i forward data which i received at my COM Port via USB FS to a UART of my Choice?
I already send data to UART5 and i measured it with an osci and its working
har buffer[] = "TEST";
HAL_UART_Transmit(&huart5, buffer, sizeof(buffer), HAL_MAX_DELAY);So How can i forward data from VCP received in a Terminal to any UART?
