Hello Team,
I am seeing an issue while printing double or float values.
I am using LPC55S69 custom board.
This is the IDE version used => MCUXpresso IDE v24.12
The library used => NewlibNano (no host)
I am able to print the debug messages using "PRINTF".
I tried to print value of double or float I am just seeing blank message on the console.
Later I just realized that, PRINTF_FLOAT_ENABLE needs to be set to 1, in order to print values of double or float. I set "PRINTF_FLOAT_ENABLE" to 1 in the LPC core.
But as soon I enabled the macro, none of the debug messages are displayed on the console.
I even tried enabling "Enable printf float" option, that also didn't help.
Just FYI, I have used these format specifiers -> %f, %lf, %.4Lf, %.4f
Also FYI, In the debug mode, I can able to see the values in that particular double variable, only issue is with printing.
Can someone please let me know, what is missing?
Regards,
San