added misc information

pull/1/head
Simon Pirkelmann 2019-11-30 21:04:25 +01:00
parent f5f7b62283
commit f1430b9072
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,15 @@
26 01 16 5C
26 01 18 52
26 01 1E 4F
26 01 17 83
26 01 1B 5C
26 01 1E B5
26 01 13 DA
26 01 1E 8F
26 01 18 F1
26 01 1A CE
26 01 12 F1
26 01 1B 18
26 01 19 40
26 01 19 96
26 01 18 FF

15
micropython/misc/todo.txt Normal file
View File

@ -0,0 +1,15 @@
TODO:
1. Only certain frequencies are currently supported by the driver. The frequency can be specified by the 3-byte register FRF for the sx127x chip. For details see the datasheet.
Example:
freq = 868.1E6
temp = int(freq * 2**19 / f_xosc)
lsb = temp & 0xFF
mid = temp >> 8 & 0xFF
msb = temp >> 16 & 0xFF
2. Spreading factors 11 and 12 do not work correctly with LoRaWAN. Possible reason: TTN mandates the use of 'Low datarate optimization' at these spreading factors. Maybe we can enable this in the driver?
3. PBC for RFM95 module
https://github.com/attexx/rfm9x_breakout_board

View File

@ -0,0 +1,11 @@
Upload a file:
--------------
ampy --port /dev/ttyUSB0 put main.py
Run a file:
-----------
ampy --port /dev/ttyUSB0 run main.py
REPL:
-----
picocom /dev/ttyUSB0 -b115200