mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-31 14:12:41 +00:00
28 lines
758 B
Python
Executable File
28 lines
758 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from common import create_serial, create_interface
|
|
|
|
from coax import read_address_counter_hi, read_address_counter_lo, load_address_counter_hi, load_address_counter_lo, write_data, insert_byte
|
|
|
|
with create_serial() as serial:
|
|
interface = create_interface(serial)
|
|
|
|
load_address_counter_hi(interface, 0)
|
|
load_address_counter_lo(interface, 80)
|
|
|
|
write_data(interface, bytes.fromhex('a7 84 8b 8b 8e 33 00 96 8e 91 8b 83 19'))
|
|
|
|
input('Press ENTER...')
|
|
|
|
load_address_counter_hi(interface, 0)
|
|
load_address_counter_lo(interface, 81)
|
|
|
|
insert_byte(interface, 0xb7)
|
|
|
|
input('Press ENTER...')
|
|
|
|
load_address_counter_hi(interface, 0)
|
|
load_address_counter_lo(interface, 88)
|
|
|
|
insert_byte(interface, 0xb7)
|