mirror of
https://github.com/lowobservable/coax.git
synced 2026-02-07 09:07:40 +00:00
14 lines
341 B
Python
14 lines
341 B
Python
"""
|
|
coax.interface
|
|
~~~~~~~~~~~~~~
|
|
"""
|
|
|
|
class Interface:
|
|
def reset(self):
|
|
raise NotImplementedError
|
|
|
|
def transmit_receive(self, transmit_words, transmit_repeat_count=None,
|
|
transmit_repeat_offset=1, receive_length=None,
|
|
receive_timeout=None):
|
|
raise NotImplementedError
|