for n in pairs(lora) do print(n) end causes an infinite loop of printing 'setAppKey', 'setNwksKey', 'setAppsKey'
There is a duplicate 'setAppKey' entry in the lora_map table in Lua-RTOS-ESP32/components/lua_rtos/Lua/modules/lora.c. Removing this appears to fix the issue.
for n in pairs(lora) do print(n) end
causes an infinite loop of printing 'setAppKey', 'setNwksKey', 'setAppsKey'There is a duplicate 'setAppKey' entry in the lora_map table in Lua-RTOS-ESP32/components/lua_rtos/Lua/modules/lora.c. Removing this appears to fix the issue.