We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 619fa30 commit 71faa7bCopy full SHA for 71faa7b
micropython/lora/lora-sx126x/lora/sx126x.py
@@ -152,8 +152,7 @@ def __init__(
152
dio3_tcxo_start_time_us if dio3_tcxo_millivolts else 0
153
)
154
155
- self._buf = bytearray(9) # shared buffer for commands, access through _buf_view
156
- self._buf_view = memoryview(self._buf)
+ self._buf_view = memoryview(bytearray(9)) # shared buffer for commands
157
158
# These settings are kept in the object (as can't read them back from the modem)
159
self._output_power = 14
0 commit comments