Hello Community!! I am trying to send string to UART but it's not transmitting.I am using STM32F030R8T6 Valueline board.However when I am transmitting single char or decimal value it's going.
sprintf(buffer,"Hello\r\n"); len=strlen(buffer); HAL_UART_Transmit(&huart1,(uint8_t *)buffer,strlen(buffer), 0xFFFF); HAL_Delay(100); // just in case required delay is given2. ch=83; HAL_UART_Transmit(&huart1, &ch...