Apparently there is some printf-functionality to write to the console while debugging.
By just using printf in my application I cause a reset, so obviously I'm doing something wrong. Unfortunately I did not find any information on how printf behaves. Is there any documentation on this function?
Hi Dominik,
In CCS4/5, please enable fprintf support. It is under ARM Compiler: Advance Options:Library Function Assumption.
Regards,
QJ
Thanks for the hint. It put me on the right track: Since I am not using dynamic memory I did not have .sysmem defined in my linker cmd. Since printf apparently uses malloc it worked after defining a .sysmem region on the RAM.