User`s manual

Dynamic C Users Manual digi.com 221
yield
Used in a costatement, this keyword causes the costatement to pause temporarily, allowing other costate-
ments to execute. The yield statement does not alter program logic, but merely postpones it.
for(;;){
costate {
...
yield;
...
}
...
}