Question
Sending UART issue
Hello
I wrote UART sending command. I use cp210x from Silicon labs.
But i didnt see numbers in putty or termite .
Please tell me what is wrong ?
[url=https://hizliresim.com/dABfK1[/url]
My code:
My code:
#include "string.h"
char com_giden[50];
int ix = 0;
sprintf(com_giden,"merhaba dunya : %d\r\n",ix++);
HAL_UART_Transmit(&huart1,(uint8_t*)com_giden,strlen(com_giden),10);
my usb ttl:
HAL_Delay(500);