Part Number: AM625-Q1
Other Parts Discussed in Thread: SYSCONFIG, SK-AM62, SK-AM62B-P1
Platform: AM625-Q1 FCBGA (AMC)
RTOS SDK Version: 10.1.0.33
SysConfig Version: 1.20.0
Debug Probe: XDS110 USB Debug Probe
On A53SS1-0 core, measure time with ClockP_getTimeUserc( ) simply as below:
uint64_t curTimeInUsecs, endTimeInUsecs;
curTimeInUsecs = ClockP_getTimeUsec( );
// function processing
endTimeInUsecs = ClockP_getTimeUsec( )-curTimeInUsecs;
DebugP_log ("JPEG TO BMP used time %llu us\n", endTimeInUsecs);
When run from JTAG with CCS, the time is abnormal, looks like couter overflow. must be something wrong.
[a531-0] 0.000018s : JPEG TO BMP used time 18446744073709550762 us
[a531-0] 0.000193s : JPEG TO BPP used time 18446744073709551613 us
When run from UART boot, the time is consistent:
[a531-0] 82.221485s : JPEG TO BPP used time 115213 us
[a531-0] 82.239662s : JPEG TO BMP used time 18166 us...
Can it be explanable? and can it be fixed?


