This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

sprintf,printf and %f,%g,%e not working

I'm using sprinf and printf in multiple threads in my app.  RTS functions appeared to be working fine until

I called:

char[128] buffer = { '\0' };

float fpVar = 1.0;

sprintf( buffer, "%f", fpVar );

Which did nothing.  Has anyone gotten %f,%g,%e format specifiers to work on C6455 with DSP/BIOS?

PS - I'm NOT calling this withing SWI or HWI, and like I mentioned the other specifiers are working fine.