Files
lowobservable.coax/pycoax/coax/interface.py
2021-02-13 20:16:15 -06:00

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