Hello Michael,
To print floating point values, you need to enable float/double support to printf() function. In KDS, please look under: Properties->C/C++ Build->Settings->Tool Settings->Cross ARM C Linker, then add
-u _printf_float to the linker options. It will be OK.
For example, you can write code like this:
float temp=36.5;
printf("\r\n temp=%f \n\r",temp);