updated the docs about payload_size min/max value and fixed a typo in README
updated type hints in RF24Network.read() and RF24Network.peek() signatures (including docstrings and stub files)
updated action versions used in CI
release CI will now build wheels for python 3.11
Most significant change here is the increase of the MAX_PAYLOAD_SIZE to 1514. One can still customize the value by doing a custom build from source using an env var named CMAKE_ARGS
export CMAKE_ARGS="-DMAX_PAYLOAD_SIZE=1514"
or monkeypatch the value at python runtime (not entirely good practice because its technically a module-level "constant" attribute)
More like routine updates...
payload_size
min/max value and fixed a typo in READMERF24Network.read()
andRF24Network.peek()
signatures (including docstrings and stub files)Most significant change here is the increase of the
MAX_PAYLOAD_SIZE
to1514
. One can still customize the value by doing a custom build from source using an env var namedCMAKE_ARGS
or monkeypatch the value at python runtime (not entirely good practice because its technically a module-level "constant" attribute)