Quote Originally Posted by jmgelba View Post
It should not allow the FETS to fire untill the adc reading is 466 or higher. However it fires regardless of adc reading.
Perhaps changing ...
Code:
IF BNK1 OR BNK2 => 466 THEN FLASH
IF BNK1 OR BNK2 =< 465 THEN MAIN
... to ...
Code:
IF (BNK1 => 466) OR (BNK2 => 466) THEN FLASH
GOTO MAIN