├── .gitignore ├── LICENSE ├── README.md ├── bin ├── ebytes_esp32_lr1121_bootloader.bin ├── ebytes_esp32_lr1121_lorahub.bin ├── ebytes_esp32_lr1121_partition-table.bin ├── flash_esp32.py ├── heltec_wifi_lora_32_v3_bootloader.bin ├── heltec_wifi_lora_32_v3_lorahub.bin ├── heltec_wifi_lora_32_v3_partition-table.bin ├── lilygo_t3s3_lora32_sx1262_bootloader.bin ├── lilygo_t3s3_lora32_sx1262_lorahub.bin ├── lilygo_t3s3_lora32_sx1262_partition-table.bin ├── seeed_xiao_esp32s3_devkit_bootloader.bin ├── seeed_xiao_esp32s3_devkit_lorahub.bin ├── seeed_xiao_esp32s3_devkit_partition-table.bin ├── semtech_devkit_llcc68_bootloader.bin ├── semtech_devkit_llcc68_lorahub.bin ├── semtech_devkit_llcc68_partition-table.bin ├── semtech_devkit_lr1121_bootloader.bin ├── semtech_devkit_lr1121_lorahub.bin ├── semtech_devkit_lr1121_partition-table.bin ├── semtech_devkit_sx1261_bootloader.bin ├── semtech_devkit_sx1261_lorahub.bin ├── semtech_devkit_sx1261_partition-table.bin ├── semtech_devkit_sx1262_bootloader.bin ├── semtech_devkit_sx1262_lorahub.bin ├── semtech_devkit_sx1262_partition-table.bin ├── semtech_devkit_sx1268_bootloader.bin ├── semtech_devkit_sx1268_lorahub.bin └── semtech_devkit_sx1268_partition-table.bin ├── components ├── liblorahub │ ├── .clang-format │ ├── CMakeLists.txt │ ├── lorahub_aux.c │ ├── lorahub_aux.h │ ├── lorahub_hal.c │ ├── lorahub_hal.h │ ├── lorahub_hal_rx.c │ ├── lorahub_hal_rx.h │ ├── lorahub_hal_tx.c │ ├── lorahub_hal_tx.h │ ├── lorahub_log.h │ ├── lr11xx_driver_extension.c │ └── lr11xx_driver_extension.h ├── radio_drivers │ ├── .clang-format │ ├── CMakeLists.txt │ ├── llcc68_hal.c │ ├── lr11xx_hal.c │ ├── radio_context.h │ └── sx126x_hal.c └── smtc_ral │ ├── CMakeLists.txt │ ├── README.md │ ├── bsp │ ├── .clang-format │ ├── llcc68 │ │ ├── ral_llcc68_bsp.c │ │ ├── smtc_shield_llcc68.h │ │ ├── smtc_shield_llcc68_types.h │ │ ├── smtc_shield_llcc68mb2cas.c │ │ └── smtc_shield_llcc68mb2cas.h │ ├── lr11xx │ │ ├── ebytes_esp32_lr1121.c │ │ ├── ebytes_esp32_lr1121.h │ │ ├── ral_lr11xxx_bsp.c │ │ ├── smtc_shield_lr1121mb2thdas.c │ │ ├── smtc_shield_lr1121mb2thdas.h │ │ ├── smtc_shield_lr11x1_common.c │ │ ├── smtc_shield_lr11x1_common.h │ │ ├── smtc_shield_lr11xx.h │ │ ├── smtc_shield_lr11xx_common.c │ │ ├── smtc_shield_lr11xx_common.h │ │ └── smtc_shield_lr11xx_types.h │ └── sx126x │ │ ├── heltec_wifi_lora_32_v3.c │ │ ├── heltec_wifi_lora_32_v3.h │ │ ├── lilygo_t3s3_lora32_sx1262.c │ │ ├── lilygo_t3s3_lora32_sx1262.h │ │ ├── ral_sx126x_bsp.c │ │ ├── seeed_xiao_sx1262.c │ │ ├── seeed_xiao_sx1262.h │ │ ├── smtc_shield_sx1261mb1bas.c │ │ ├── smtc_shield_sx1261mb1bas.h │ │ ├── smtc_shield_sx1262mb1cas.c │ │ ├── smtc_shield_sx1262mb1cas.h │ │ ├── smtc_shield_sx1268mb1gas.c │ │ ├── smtc_shield_sx1268mb1gas.h │ │ ├── smtc_shield_sx126x.h │ │ └── smtc_shield_sx126x_types.h │ ├── license.md │ └── src │ ├── ral.h │ ├── ral_defs.h │ ├── ral_drv.h │ ├── ral_llcc68.c │ ├── ral_llcc68.h │ ├── ral_llcc68_bsp.h │ ├── ral_lr11xx.c │ ├── ral_lr11xx.h │ ├── ral_lr11xx_bsp.h │ ├── ral_sx126x.c │ ├── ral_sx126x.h │ └── ral_sx126x_bsp.h ├── doc ├── howto-chirpstack.md ├── howto-lbm.md └── howto-thethingsnetwork.md ├── lorahub ├── CMakeLists.txt ├── PROTOCOL.md ├── compile_all_platforms.py ├── main │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── base64.c │ ├── base64.h │ ├── component.mk │ ├── config_nvs.c │ ├── config_nvs.h │ ├── display.c │ ├── display.h │ ├── http_server.c │ ├── http_server.h │ ├── hw_board_defs.h │ ├── idf_component.yml │ ├── jitqueue.c │ ├── jitqueue.h │ ├── lorahub_version.h │ ├── main.c │ ├── main_defs.h │ ├── parson.c │ ├── parson.h │ ├── pkt_fwd.c │ ├── pkt_fwd.h │ ├── trace.h │ ├── wifi.c │ └── wifi.h └── sdkconfig.defaults ├── tests └── test_http_rest_api.py └── tools └── util_net_downlink ├── .clang-format ├── Makefile ├── inc ├── base64.h └── parson.h ├── readme.md └── src ├── base64.c ├── net_downlink.c └── parson.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/README.md -------------------------------------------------------------------------------- /bin/ebytes_esp32_lr1121_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/ebytes_esp32_lr1121_bootloader.bin -------------------------------------------------------------------------------- /bin/ebytes_esp32_lr1121_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/ebytes_esp32_lr1121_lorahub.bin -------------------------------------------------------------------------------- /bin/ebytes_esp32_lr1121_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/ebytes_esp32_lr1121_partition-table.bin -------------------------------------------------------------------------------- /bin/flash_esp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/flash_esp32.py -------------------------------------------------------------------------------- /bin/heltec_wifi_lora_32_v3_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/heltec_wifi_lora_32_v3_bootloader.bin -------------------------------------------------------------------------------- /bin/heltec_wifi_lora_32_v3_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/heltec_wifi_lora_32_v3_lorahub.bin -------------------------------------------------------------------------------- /bin/heltec_wifi_lora_32_v3_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/heltec_wifi_lora_32_v3_partition-table.bin -------------------------------------------------------------------------------- /bin/lilygo_t3s3_lora32_sx1262_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/lilygo_t3s3_lora32_sx1262_bootloader.bin -------------------------------------------------------------------------------- /bin/lilygo_t3s3_lora32_sx1262_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/lilygo_t3s3_lora32_sx1262_lorahub.bin -------------------------------------------------------------------------------- /bin/lilygo_t3s3_lora32_sx1262_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/lilygo_t3s3_lora32_sx1262_partition-table.bin -------------------------------------------------------------------------------- /bin/seeed_xiao_esp32s3_devkit_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/seeed_xiao_esp32s3_devkit_bootloader.bin -------------------------------------------------------------------------------- /bin/seeed_xiao_esp32s3_devkit_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/seeed_xiao_esp32s3_devkit_lorahub.bin -------------------------------------------------------------------------------- /bin/seeed_xiao_esp32s3_devkit_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/seeed_xiao_esp32s3_devkit_partition-table.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_llcc68_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_llcc68_bootloader.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_llcc68_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_llcc68_lorahub.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_llcc68_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_llcc68_partition-table.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_lr1121_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_lr1121_bootloader.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_lr1121_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_lr1121_lorahub.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_lr1121_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_lr1121_partition-table.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1261_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1261_bootloader.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1261_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1261_lorahub.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1261_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1261_partition-table.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1262_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1262_bootloader.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1262_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1262_lorahub.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1262_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1262_partition-table.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1268_bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1268_bootloader.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1268_lorahub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1268_lorahub.bin -------------------------------------------------------------------------------- /bin/semtech_devkit_sx1268_partition-table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/bin/semtech_devkit_sx1268_partition-table.bin -------------------------------------------------------------------------------- /components/liblorahub/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/.clang-format -------------------------------------------------------------------------------- /components/liblorahub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/CMakeLists.txt -------------------------------------------------------------------------------- /components/liblorahub/lorahub_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_aux.c -------------------------------------------------------------------------------- /components/liblorahub/lorahub_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_aux.h -------------------------------------------------------------------------------- /components/liblorahub/lorahub_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_hal.c -------------------------------------------------------------------------------- /components/liblorahub/lorahub_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_hal.h -------------------------------------------------------------------------------- /components/liblorahub/lorahub_hal_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_hal_rx.c -------------------------------------------------------------------------------- /components/liblorahub/lorahub_hal_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_hal_rx.h -------------------------------------------------------------------------------- /components/liblorahub/lorahub_hal_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_hal_tx.c -------------------------------------------------------------------------------- /components/liblorahub/lorahub_hal_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_hal_tx.h -------------------------------------------------------------------------------- /components/liblorahub/lorahub_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lorahub_log.h -------------------------------------------------------------------------------- /components/liblorahub/lr11xx_driver_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lr11xx_driver_extension.c -------------------------------------------------------------------------------- /components/liblorahub/lr11xx_driver_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/liblorahub/lr11xx_driver_extension.h -------------------------------------------------------------------------------- /components/radio_drivers/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/radio_drivers/.clang-format -------------------------------------------------------------------------------- /components/radio_drivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/radio_drivers/CMakeLists.txt -------------------------------------------------------------------------------- /components/radio_drivers/llcc68_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/radio_drivers/llcc68_hal.c -------------------------------------------------------------------------------- /components/radio_drivers/lr11xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/radio_drivers/lr11xx_hal.c -------------------------------------------------------------------------------- /components/radio_drivers/radio_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/radio_drivers/radio_context.h -------------------------------------------------------------------------------- /components/radio_drivers/sx126x_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/radio_drivers/sx126x_hal.c -------------------------------------------------------------------------------- /components/smtc_ral/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/CMakeLists.txt -------------------------------------------------------------------------------- /components/smtc_ral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/README.md -------------------------------------------------------------------------------- /components/smtc_ral/bsp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/.clang-format -------------------------------------------------------------------------------- /components/smtc_ral/bsp/llcc68/ral_llcc68_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/llcc68/ral_llcc68_bsp.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/llcc68/smtc_shield_llcc68.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/llcc68/smtc_shield_llcc68.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/llcc68/smtc_shield_llcc68_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/llcc68/smtc_shield_llcc68_types.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/llcc68/smtc_shield_llcc68mb2cas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/llcc68/smtc_shield_llcc68mb2cas.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/llcc68/smtc_shield_llcc68mb2cas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/llcc68/smtc_shield_llcc68mb2cas.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/ebytes_esp32_lr1121.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/ebytes_esp32_lr1121.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/ebytes_esp32_lr1121.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/ebytes_esp32_lr1121.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/ral_lr11xxx_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/ral_lr11xxx_bsp.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr1121mb2thdas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr1121mb2thdas.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr1121mb2thdas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr1121mb2thdas.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr11x1_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr11x1_common.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr11x1_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr11x1_common.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx_common.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx_common.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/lr11xx/smtc_shield_lr11xx_types.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/heltec_wifi_lora_32_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/heltec_wifi_lora_32_v3.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/heltec_wifi_lora_32_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/heltec_wifi_lora_32_v3.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/lilygo_t3s3_lora32_sx1262.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/lilygo_t3s3_lora32_sx1262.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/lilygo_t3s3_lora32_sx1262.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/lilygo_t3s3_lora32_sx1262.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/ral_sx126x_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/ral_sx126x_bsp.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/seeed_xiao_sx1262.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/seeed_xiao_sx1262.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/seeed_xiao_sx1262.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/seeed_xiao_sx1262.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx1261mb1bas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx1261mb1bas.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx1261mb1bas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx1261mb1bas.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx1262mb1cas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx1262mb1cas.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx1262mb1cas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx1262mb1cas.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx1268mb1gas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx1268mb1gas.c -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx1268mb1gas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx1268mb1gas.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx126x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx126x.h -------------------------------------------------------------------------------- /components/smtc_ral/bsp/sx126x/smtc_shield_sx126x_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/bsp/sx126x/smtc_shield_sx126x_types.h -------------------------------------------------------------------------------- /components/smtc_ral/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/license.md -------------------------------------------------------------------------------- /components/smtc_ral/src/ral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_defs.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_drv.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_llcc68.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_llcc68.c -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_llcc68.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_llcc68.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_llcc68_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_llcc68_bsp.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_lr11xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_lr11xx.c -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_lr11xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_lr11xx.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_lr11xx_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_lr11xx_bsp.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_sx126x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_sx126x.c -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_sx126x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_sx126x.h -------------------------------------------------------------------------------- /components/smtc_ral/src/ral_sx126x_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/components/smtc_ral/src/ral_sx126x_bsp.h -------------------------------------------------------------------------------- /doc/howto-chirpstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/doc/howto-chirpstack.md -------------------------------------------------------------------------------- /doc/howto-lbm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/doc/howto-lbm.md -------------------------------------------------------------------------------- /doc/howto-thethingsnetwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/doc/howto-thethingsnetwork.md -------------------------------------------------------------------------------- /lorahub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/CMakeLists.txt -------------------------------------------------------------------------------- /lorahub/PROTOCOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/PROTOCOL.md -------------------------------------------------------------------------------- /lorahub/compile_all_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/compile_all_platforms.py -------------------------------------------------------------------------------- /lorahub/main/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/.clang-format -------------------------------------------------------------------------------- /lorahub/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/CMakeLists.txt -------------------------------------------------------------------------------- /lorahub/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/Kconfig.projbuild -------------------------------------------------------------------------------- /lorahub/main/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/base64.c -------------------------------------------------------------------------------- /lorahub/main/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/base64.h -------------------------------------------------------------------------------- /lorahub/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/component.mk -------------------------------------------------------------------------------- /lorahub/main/config_nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/config_nvs.c -------------------------------------------------------------------------------- /lorahub/main/config_nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/config_nvs.h -------------------------------------------------------------------------------- /lorahub/main/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/display.c -------------------------------------------------------------------------------- /lorahub/main/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/display.h -------------------------------------------------------------------------------- /lorahub/main/http_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/http_server.c -------------------------------------------------------------------------------- /lorahub/main/http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/http_server.h -------------------------------------------------------------------------------- /lorahub/main/hw_board_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/hw_board_defs.h -------------------------------------------------------------------------------- /lorahub/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/idf_component.yml -------------------------------------------------------------------------------- /lorahub/main/jitqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/jitqueue.c -------------------------------------------------------------------------------- /lorahub/main/jitqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/jitqueue.h -------------------------------------------------------------------------------- /lorahub/main/lorahub_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/lorahub_version.h -------------------------------------------------------------------------------- /lorahub/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/main.c -------------------------------------------------------------------------------- /lorahub/main/main_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/main_defs.h -------------------------------------------------------------------------------- /lorahub/main/parson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/parson.c -------------------------------------------------------------------------------- /lorahub/main/parson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/parson.h -------------------------------------------------------------------------------- /lorahub/main/pkt_fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/pkt_fwd.c -------------------------------------------------------------------------------- /lorahub/main/pkt_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/pkt_fwd.h -------------------------------------------------------------------------------- /lorahub/main/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/trace.h -------------------------------------------------------------------------------- /lorahub/main/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/wifi.c -------------------------------------------------------------------------------- /lorahub/main/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/main/wifi.h -------------------------------------------------------------------------------- /lorahub/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/lorahub/sdkconfig.defaults -------------------------------------------------------------------------------- /tests/test_http_rest_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tests/test_http_rest_api.py -------------------------------------------------------------------------------- /tools/util_net_downlink/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/.clang-format -------------------------------------------------------------------------------- /tools/util_net_downlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/Makefile -------------------------------------------------------------------------------- /tools/util_net_downlink/inc/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/inc/base64.h -------------------------------------------------------------------------------- /tools/util_net_downlink/inc/parson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/inc/parson.h -------------------------------------------------------------------------------- /tools/util_net_downlink/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/readme.md -------------------------------------------------------------------------------- /tools/util_net_downlink/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/src/base64.c -------------------------------------------------------------------------------- /tools/util_net_downlink/src/net_downlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/src/net_downlink.c -------------------------------------------------------------------------------- /tools/util_net_downlink/src/parson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lora-net/one_channel_hub/HEAD/tools/util_net_downlink/src/parson.c --------------------------------------------------------------------------------