Hi,
I am learning the full ethercat example that comes with the am335x idk board. And I am very ashamed to ask a very basic question:
What is meaning of "0x44E00508" which appears in the following location in the sdk folder: \am335x_sysbios_ind_sdk_1.0.0.8\sdk\platform\am335x\src\am335x_indcomm_startup.c:
line 88:
void timer2Init(void)
{
// make sure our Timer2 (BIOS 1ms) uses 32kHz ref clock
// some boot loaders change that...
*(unsigned int*)0x44E00508 = 2; // select 32kHz
}
Moreover, is there any document that can explain the line of the code: *(unsigned int*)0x44E00508 = 2; // select 32kHz
Thank you!
Tao