This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AWRL6432: Question on FRAME_REF_TIMER

Part Number: AWRL6432
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