├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.mk ├── gcc_nrf52.ld ├── hardware └── lora-nrf-kicad.zip ├── include ├── FreeRTOSConfig.h ├── board_init.h ├── lora_config.h ├── lora_mesh.h ├── lora_nrf_gpio.h ├── lora_pkg.h ├── mesh_route.h ├── radio.h ├── sdk_config.h ├── sx126x.h ├── sx126x_board.h └── utils.h ├── nrf_sdk.mk ├── sink └── mqtt-lora-mesh.py └── src ├── board_init.c ├── lora_mesh_mac.c ├── lora_mesh_net.c ├── lora_pkg.c ├── main.c ├── mesh_route.c ├── radio.c ├── sx126x.c └── sx126x_board.c /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/README.md -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/config.mk -------------------------------------------------------------------------------- /gcc_nrf52.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/gcc_nrf52.ld -------------------------------------------------------------------------------- /hardware/lora-nrf-kicad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/hardware/lora-nrf-kicad.zip -------------------------------------------------------------------------------- /include/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/FreeRTOSConfig.h -------------------------------------------------------------------------------- /include/board_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/board_init.h -------------------------------------------------------------------------------- /include/lora_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/lora_config.h -------------------------------------------------------------------------------- /include/lora_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/lora_mesh.h -------------------------------------------------------------------------------- /include/lora_nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/lora_nrf_gpio.h -------------------------------------------------------------------------------- /include/lora_pkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/lora_pkg.h -------------------------------------------------------------------------------- /include/mesh_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/mesh_route.h -------------------------------------------------------------------------------- /include/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/radio.h -------------------------------------------------------------------------------- /include/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/sdk_config.h -------------------------------------------------------------------------------- /include/sx126x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/sx126x.h -------------------------------------------------------------------------------- /include/sx126x_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/sx126x_board.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/include/utils.h -------------------------------------------------------------------------------- /nrf_sdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/nrf_sdk.mk -------------------------------------------------------------------------------- /sink/mqtt-lora-mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/sink/mqtt-lora-mesh.py -------------------------------------------------------------------------------- /src/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/board_init.c -------------------------------------------------------------------------------- /src/lora_mesh_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/lora_mesh_mac.c -------------------------------------------------------------------------------- /src/lora_mesh_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/lora_mesh_net.c -------------------------------------------------------------------------------- /src/lora_pkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/lora_pkg.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mesh_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/mesh_route.c -------------------------------------------------------------------------------- /src/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/radio.c -------------------------------------------------------------------------------- /src/sx126x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/sx126x.c -------------------------------------------------------------------------------- /src/sx126x_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanwckf/nrf-lora-mesh/HEAD/src/sx126x_board.c --------------------------------------------------------------------------------