mirror of
https://github.com/lowobservable/coax.git
synced 2026-02-28 01:35:50 +00:00
39 lines
1.1 KiB
Python
Executable File
39 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import open_example_serial_interface
|
|
|
|
from coax import SecondaryControl, ReadAddressCounterHi, ReadAddressCounterLo, ReadMultiple, LoadAddressCounterHi, LoadAddressCounterLo, LoadSecondaryControl, WriteData
|
|
|
|
with open_example_serial_interface() as interface:
|
|
interface.execute([LoadAddressCounterHi(0), LoadAddressCounterLo(80)])
|
|
|
|
interface.execute(WriteData(bytes.fromhex('a7 84 8b 8b 8e 33 00 96 8e 91 8b 83 19')))
|
|
|
|
interface.execute([LoadAddressCounterHi(0), LoadAddressCounterLo(81)])
|
|
|
|
print('READ_MULTIPLE...')
|
|
|
|
bytes_ = interface.execute(ReadMultiple())
|
|
|
|
print(bytes_)
|
|
|
|
[hi, lo] = interface.execute([ReadAddressCounterHi(), ReadAddressCounterLo()])
|
|
|
|
print(f'hi = {hi}, lo = {lo}')
|
|
|
|
interface.execute([LoadAddressCounterHi(0), LoadAddressCounterLo(81)])
|
|
|
|
print('LOAD_SECONDARY_CONTROL big')
|
|
|
|
interface.execute(LoadSecondaryControl(SecondaryControl(big=True)))
|
|
|
|
print('READ_MULTIPLE...')
|
|
|
|
bytes_ = interface.execute(ReadMultiple())
|
|
|
|
print(bytes_)
|
|
|
|
[hi, lo] = interface.execute([ReadAddressCounterHi(), ReadAddressCounterLo()])
|
|
|
|
print(f'hi = {hi}, lo = {lo}')
|