Good morning to every one,
I am developing some codes to my embedded applications using TM4C123GH6PGE Microcontroller. I am using below function to set clock frequency .
SysCtlClockSet(SYSCTL_SYSDIV_4 | SYSCTL_USE_PLL | SYSCTL_OSC_MAIN | SYSCTL_XTAL_16MHZ);
From the above instruction i want to set a delay 1 second delay, 1 millisecond delay 1 micro second delay.
I am requesting you to can any one please send me the instructions to the above delay in the form of
SysCtlDelay(SysCtlClockGet() / number );
or
SysCtlDelay(160000);
Thanks in advance.