Hi,
I am facing problem to get the correct formula for generating the delay i want using SysCtlDelay function. We are using TIRTOS 2.1.0.
I am using TM4C129DNCPDT controller.
I tried using below formula to generate a delay of 1sec, but it didn't give me the required time delay and goes into long delay :
Clk = SysCtlClockGet();
SysCtlDelay(DelayTimeInSeconds/((1/Clk)*3));
Can anybody please confirm the formula and what we are missing.
Thanks in advance.