Sleep Command 2

Tricky Dicky

Senior Member
Can the sleep command be interrupted. I have looked through both the Logicator manual and the BASIC manual and cannot find any restriction that says it cannot?

Richard
 

slimplynth

Senior Member
if interrupts are checked at the end of every command line, would the interrupt pin have to be held high for at least 2.3 secs? i.e. if the sleep command were programmed...

Code:
main:
sleep 100
goto main
the interrupt condition/mask would be checked for only once every 230 seconds?
 

hippy

Technical Support
Staff member
The SLEEP command cannot be interrupted by normal SETINT interrupt but it can be interrupted by hardware events and hardware interrupts.
 
Top