hi
I have created a one shot clock instance using following function
Util_constructClock(&timeoutclock, timeoutHandler,_new_timeout_interval,0, false, SBP_timer_EVT);
Util_startClock(&timeoutclock);
the timeout interval i kept is for 3 weeks which is in milliceconds equal to "_new_timeout_interval = 1828800000;"
the interrupt should fire after three weeks but actually it is firing uf after 14 hours as i tested. wht the problem is ?
is the interval value so long? or the interval variable is getting corrupt
i saw the definition of Util_constructClock function it takes uint32 for interval it means it can go upto 2^32 or 7 weeks
urgent help is required in this regards