Other Parts Discussed in Thread: SYSBIOS
Tool/software: Code Composer Studio
Hi,
we have problem with system_printf() function, for example,
there is a number float a = 2066412032 and float b = 52410593152,
when we use the code to output the number,
System_printf(" a = %f \n", a);
System_printf(" b = %f \n", b);
get the results:
a = 2066412032.0000
b = (error)
why?
System_printf(" %f \n") only support a float number less than 9.9999e9,not support a float greater than 1.00e10,
why ?
do you have a method to solve this problem ???
many thanks