Turn Off ip.buffer

pcb.off( [int] )

Turn off the ip.buffer and optionally modify the wakeup counter.

Parameter Type Description
int boolean True = interval; False = periodic (i.e. don't reset the timer)

When calling pcb.off() the wakeup counter is not reset.
This enables a regular, periodic, wakeup.

When calling pcb.off(true) the wakeup counter is reset to zero, so the ip.buffer will wakeup again after the wakeup timer - making the delay an interval.

Info

If COM1.DTR is asserted, or if any WAKEUP hardware input is asserted, the ip.buffer will not turn off (because active hardware controls override the firmware controls).

Warning

This API call will reset the Reasons flag. Use pcb.onfor(0) to release the PCB control without clearing the wakeup reason flags.