Hi all ..
I have some troubles with printf and MQX-Lite. It works as long as I dont't use arguments:
printf( "Any text" );
The application breaks as soon as I use arguments:
uint8_t test;
test = 5;
printf( "Any test %i", test );
I had no problems without MQX-Lite but as I understand printf should work with MQX-Lite. I only found one indication for problems with printf here:
https://community.freescale.com/thread/311083
Does anyone know something about this?
Thank you, Dominic