Hi,
When I try to output more value in one log_printf, it seems the values after the 2nd will be always 0. Why and how to deal with it? Thanks!
For example:
LOG_printf(&trace, "++++++DelayNms UL TASK, %d %d %d %dSymbol DmaFinished %d us",gusTxSeq,gusTxSeq,gusTxSeq,gusTxSeq,TSCL/800);
It will output:
++++++DelayNms UL TASK, 15 15 0 0Symbol DmaFinished 0 us
Jianbin
Jianbin,
Did you look at the BIOS API guide? In there it tells you what formats are allowed for LOG_printf.
In short summary, you can have 0, 1 or 2 arguments only...You cannot have more than that.
Judah
If my reply answers your question please mark the thread as answered