Does anyone know what this means
param[in] timer /*The zero-based index of the timer. *
param[in] delay_us /*The time to delay for, in microseconds. */
void Timer_Wait(const uint8_t timer, const uint32_t delay_us);
and this is the address mapping
Timer 0 0x80000000 Timer 1 0x80000100
I would just like to know what it means by “Zero – Based index of the timer”
Thank you
Zero based means if you have three timers, they are numbered 0,1,2 as opposed to 1,2,3.