SPC  Version 0.9.5
 All Files Functions Groups Pages
ex_CurrentTick.spc

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

task main()
{
while (true) {
int x = CurrentTick();
printf("x = %d\n", x);
}
}