12-04-2012 11:27 AM
Under my FPGA target, I have a 9485 module. I have all the 8 channels in my project, and I have a channel called "CH7:0". What is that? I assume I can select anyone of the channl with that? How do I use it?
Solved! Go to Solution.
12-04-2012 11:46 AM
This is the U8 integer that you want to write for all the channels from bit 0 to 7 at the same time. For example, to turn all bits on, you have to write 255 which corresponds to FF hex and 1111 1111 binary.
12-04-2012 02:16 PM
ahhhh. That didn't cross my mind for some reason. A pretty good feature. Thanks!