Hello all,
Firstly, I apologize for hijacking this thread - my first post and I really struggled to find where to create a new post/thread..!
anyway, I am struggling to understand why a relatively simple clock of HET code isn't working. The following is meant to output, on pin 0, ten high pulse of increased size each time. It is not complete (as it is here it'll do ten pulses and then nothing more), but it doesn't work as it is. All I get out is one single high pulse.
L00 DJZ { next=L01, cond_addr=L03, reg=A, data=100};
L01 ECMP { next=L00, cond_addr=L02, en_pin_action=ON, pin=0, action=PULSEHI, reg=A, data=10};
L02 DADM64 { next=L00, remote=L01, cond_addr=L02, comp_mode= ECMP, pin=0, en_pin_action=ON, action= PULSEHI, reg=A,data=10};
L03 MOV32 { next=L00, remote= L00 , type=IMTOREG&REM, reg=NONE, data= 100}
Thanks in advance of your help !!