Implement receiver error

This commit is contained in:
Andrew Kay
2020-03-25 19:51:46 -05:00
parent 849810153b
commit c79f484f79
3 changed files with 17 additions and 2 deletions

View File

@@ -150,7 +150,8 @@ ERROR_MAP = {
101: InterfaceError('Receiver active'),
102: ReceiveTimeout(),
103: ReceiveError('Receiver buffer overflow')
103: ReceiveError('Receiver buffer overflow'),
104: ReceiveError('Receiver error')
}
def _convert_error(message):