Other Parts Discussed in Thread: AWR6843
Hi,
In SDK5.4, I found below code. What's the address of 0x5B000020 for? Is it a timer counter register? Is it a 32-bit timer? I want to know when it will be overflow and return to 0.
//The function reads the FRAME_REF_TIMER that runs free at 40MHz
uint32_t Cycleprofiler_getTimeStamp(void)
{
uint32_t *frameRefTimer;
frameRefTimer = (uint32_t *) 0x5B000020;
return *frameRefTimer;
}
Thanks,
Chris