SPC  Version 0.9.5
 All Files Functions Groups Pages
ex_yield.spc

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

task main()
{
printf("tick = %d\n", SystemClock);
Yield();
printf("tick = %d\n", SystemClock);
}