We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6aff4 commit 6327fd9Copy full SHA for 6327fd9
1 file changed
feeph/i2c/burst_handler.py
@@ -69,7 +69,6 @@ def read_register(self, register: int, byte_count: int = 1, max_tries: int = 5)
69
for cur_try in range(1, 1 + max_tries):
70
try:
71
self._i2c_bus.writeto_then_readfrom(address=self._i2c_adr, buffer_out=buf_r, buffer_in=buf_w)
72
- LH.warning("read_register(): %s", buf_w)
73
return convert_bytearry_to_uint(buf_w)
74
except OSError as e:
75
# [Errno 121] Remote I/O error
0 commit comments