Explain DIRL and OUTL for me please
I have this code that says "LEDs VAR OUTL" and it also has something else that says "DIRL = %11111111" and "LEDs = %00000001".
Basically, what does OUTL and DIRL mean and what would be the point in having the LEDs = %00000001.
Thanks
Basically, what does OUTL and DIRL mean and what would be the point in having the LEDs = %00000001.
Thanks
Comments
As described in that same manual section, "LEDs VAR OUTL" simply defines an alternate name for OUTL that can be used in your program and means the same as OUTL (which is the least significant byte of OUTS).
·