Hi Sir,
I am working on NHS3100 with LPCXpresso.
I imported the project archive release_mra2_10_1_nhs3100.zip and tested the example projects such as "app_example_dp_i2c" to study I2C driver usage.
But here I met the problem that Trace_Printf doesNOT work.
It looks like the function "Trace_Printf" blocking the routine running.
I tried to disable "Trace_Printf" by adding a "return" statement in the begin of the function body as below:
---------
void Trace_Printf(const char *format, ...)
{
return;
// ...
}
---------
and after that, the phenomenon disappears.
Could you help to review and advice how I should do or config something to let the original project "app_example_dp_i2c" run normally?
Many thanks,
Arna