forked from M-Labs/artiq
coredevice/TCA6424A: convert 'outputs' value to little endian. Closes #437
This commit is contained in:
parent
852ddb7796
commit
3d6f55104b
|
@ -42,6 +42,13 @@ unreleased [2.x]
|
||||||
takes into account the repository revision field.
|
takes into account the repository revision field.
|
||||||
|
|
||||||
|
|
||||||
|
1.1 (unreleased)
|
||||||
|
----------------
|
||||||
|
|
||||||
|
* TCA6424A.set converts the "outputs" value to little-endian before programming
|
||||||
|
it into the registers.
|
||||||
|
|
||||||
|
|
||||||
1.0
|
1.0
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -108,5 +108,10 @@ class TCA6424A:
|
||||||
|
|
||||||
A bit set to 1 means the TTL is an output.
|
A bit set to 1 means the TTL is an output.
|
||||||
"""
|
"""
|
||||||
|
outputs_le = (
|
||||||
|
((outputs & 0xff0000) >> 16) |
|
||||||
|
(outputs & 0x00ff00) |
|
||||||
|
(outputs & 0x0000ff) << 16)
|
||||||
|
|
||||||
self._write24(0x8c, 0) # set all directions to output
|
self._write24(0x8c, 0) # set all directions to output
|
||||||
self._write24(0x84, outputs) # set levels
|
self._write24(0x84, outputs_le) # set levels
|
||||||
|
|
Loading…
Reference in New Issue