Closed
Description
Code review reveals that both Arduino_LoRaWAN_machineQ_base::NetBegin()
and Arduino_LoRaWAN_ttn_base::NetBegin()
call LMIC_setSession()
with an incorect first parameter. It's annotated as /* port number */
, and it's a constant value of 1. But that parameter is the NetID
. Luckily this only matters for Class B in the LMIC; and we don't support that yet. But it should be fixed.