;-------------------------------------------------------- ; S A C T R A C K S E Q U E N C E ;-------------------------------------------------------- ;Cannot exceed 1023 lines of instructions. ; SET 0.010 2 0 ;0.01 milliseconds per tick ;+/-10 volts ;0 degree offset; TABSZ 150000 ;set maximum table space ;DELAY command is based on the 100 microsecond clock ticks specified above ;TICKS command is based on the ADC sampling clock rate subject to num channels VAR V1=0 ;means nothing executed yet ;-------------------------------------------------------- ; I N I T I A L I Z E L E D A R R A Y ;Just turn off the LED when Sactrack is done. Send it to ;both buffers and continue resending it. ;5/11/06 ;-------------------------------------------------------- LOOP: DIGLOW [10101111] ;AF clear all boards DELAY 12 ;min delay for parallel-serial interface to process chars DIGLOW [10001111] ;9F send to all boards, #1 buffer DELAY 12 ;min delay for parallel-serial interface to process chars DIGLOW [10101111] ;AF clear all boards DELAY 12 ;min delay for parallel-serial interface to process chars DIGLOW [10011111] ;9F send to all boards, #2 buffer DELAY 12 ;min delay for parallel-serial interface to process chars MOVI V1,1 ;evidence that the code was executed JUMP LOOP ;just spin here