Hi support team,
before I start my first project with the K8061 board, just a short question:
If I send a 8 bit address (word) to the digital output, is it possible to get in parallel (at the same time ) e.q. a 3-bit word at the digital in-port ?
Many thanks for your help
There is about 2ms latency time between the out instruction and the next in instruction. E.g.
int reads; int writes = 1; OutputAllDigital(CardAddr, writes); reads = ReadAllDigital(CardAddr);
The “reads” value is updated 2ms after the OutputAllDigital instruction is complete.
Okay, understood.
Many thanks for your help.