Generated Code form STM32CubeIDE can send text by using printf command except ">"
Hi,
I use the STM32CubeIDE to generate the code of STM32L4 Discovery kit IoT node (B-L475E-IOT01A) and I have added code to use printf command. I can send text to HyperTerminal except ">" as code below.
printf("\fSTM32L4 Discovery kit IoT node (B-L475E-IOT01A)\r\n>");
But I tried to use code below. It can send ">".
uint8_t Text1[1] = {'>'};
HAL_UART_Transmit(&huart1,Text1,1,100);
Could you advise me to solve this problem?
Thank you