SPC  Version 0.9.5
 All Files Functions Groups Pages
ex_wait.spc

This is an example of how to use the Wait function.

task main()
{
printf("tick = %d\n", SystemClock);
Wait(SEC_5); // wait 5 seconds
printf("tick = %d\n", SystemClock);
}