I am trying to use Display_printf to print float values to 1 decimal place but the format specifier "%.1f" for float does not work and all it is doing is print out values to 4 decimal places.
example:
By way of illustration, I simply amended the example given in the documentation.
Display_printf(displayHandle, 0, 0, "ADC: %d", adcValue); // works fine
Display_printf(displayHandle, 1, 0, "float: %.1f", adcValue/1.0); // does not work