Return from the current task to allow other tasks to execute. Execution will resume immediately after this command. This is usually used to break up time-consuming processes. This command is only valid inside a task and can not be placed inside a control structure.
Syntax: AllowOthers
Example:
Dim a As uByte Dim s(10) As String FSR0 = Addr(a) ' FSR0 now points to variable a FSR1 = Addr(s) ' FSR1 now points to the string data for variable s
Also See: Multitasking