Problem with scanf in STM32F4, it is scanning only the first char even I am requesting to scan an int or float. Details in description
here is the code I am using to scanint ScanConfig(__const char * format, va_list args) { unsigned i=0; char ch = 0; char buffer[256]; int ret = 0; while((i<sizeof(buffer))&&(ch!='\n')&&(ch!='\r')){ HAL_StatusTypeDef status...