mirror of
https://github.com/lumapu/ahoy.git
synced 2025-06-07 13:11:38 +02:00
RPI: properly catch exception when crc8 check failed
This commit is contained in:
parent
99c2b9f7a9
commit
f332738ceb
2 changed files with 6 additions and 6 deletions
|
@ -203,7 +203,7 @@ class InverterPacketFragment:
|
||||||
|
|
||||||
# check crc8
|
# check crc8
|
||||||
if f_crc8(payload[:-1]) != payload[-1]:
|
if f_crc8(payload[:-1]) != payload[-1]:
|
||||||
raise BufferError('Frame kaputt')
|
raise BufferError('Frame corrupted - crc8 check failed')
|
||||||
|
|
||||||
self.ch_rx = ch_rx
|
self.ch_rx = ch_rx
|
||||||
self.ch_tx = ch_tx
|
self.ch_tx = ch_tx
|
||||||
|
|
|
@ -86,8 +86,8 @@ def poll_inverter(inverter, do_init, retries=4):
|
||||||
dst=inverter_ser
|
dst=inverter_ser
|
||||||
)))
|
)))
|
||||||
response = None
|
response = None
|
||||||
while com.rxtx():
|
|
||||||
try:
|
try:
|
||||||
|
while com.rxtx():
|
||||||
response = com.get_payload()
|
response = com.get_payload()
|
||||||
payload_ttl = 0
|
payload_ttl = 0
|
||||||
except Exception as e_all:
|
except Exception as e_all:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue