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 4c8163aCopy full SHA for 4c8163a
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
micropython/lora/lora-sx126x/manifest.py
@@ -1,3 +1,3 @@
1
-metadata(version="0.1.2")
+metadata(version="0.1.3")
2
require("lora")
3
package("lora")
0 commit comments