LEANSLICE

LEANSLICE
NEWSred_ball.gif (129 bytes)
DOWNLOAD

Introduction
Examples

CC5X
CC8E
CC7A
Emotor
HOME

News

The newest features are listed first.

Version 1.1 released

Supported by:
1) CC5X EXTENDED edition, version 3.1G or later
2) CC8E EXTENDED edition, version 1.0F or later
3) CC7A EXTENDED edition, version 0.5B or later
4) CC1B EXTENDED edition, version 0.5E or later

New inline function

Changing to an existing state is done by changeState(state). This is near equivalent to using "goto Label", except that a task switch is performed first.

 changeState( 3); // resume from state 3

Note that changeState(state) does not introduce any new state, but requires that the state is defined somewhere else in the task. Execution is resumed in the specified state.

End line