Remove unimplemented transmit and receive commands

This commit is contained in:
Andrew Kay
2021-02-13 20:16:15 -06:00
parent d8dd1caa90
commit 78bf65a1e6
3 changed files with 0 additions and 37 deletions

View File

@@ -7,12 +7,6 @@ class Interface:
def reset(self):
raise NotImplementedError
def transmit(self, words, repeat_count=None, repeat_offset=1):
raise NotImplementedError
def receive(self, length=None, timeout=None):
raise NotImplementedError
def transmit_receive(self, transmit_words, transmit_repeat_count=None,
transmit_repeat_offset=1, receive_length=None,
receive_timeout=None):