├── .gitignore ├── .mbedignore_no_rtos ├── LICENSE ├── README.md ├── at45-blockdevice.lib ├── bootloader ├── DISCO_L475VG_IOT01A.bin ├── FF1705_L151CC.bin └── source.txt ├── docs └── porting-guide.md ├── example-firmware ├── disco-l475vg-blinky.bin └── xdot-blinky.bin ├── fuota-server ├── .gitignore ├── README.md ├── class-c-activation │ ├── disco-l475vg-iot01a1-eu868.bin │ └── xdot-eu868.bin ├── loraserver.js ├── package.json └── test-file.bin ├── mbed-lora-radio-drv.lib ├── mbed-lorawan-update-client.lib ├── mbed-os.lib ├── mbed-printf.lib ├── mbed_app.json ├── profiles └── tiny.json ├── simconfig.json ├── source ├── example_insecure_rot.c ├── fotalora_mbedtls_config.h ├── helpers │ ├── dev_eui_helper.h │ ├── lora_radio_helper.h │ ├── memory_helper.h │ └── storage_helper.h └── main.cpp └── testplan.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/.gitignore -------------------------------------------------------------------------------- /.mbedignore_no_rtos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/.mbedignore_no_rtos -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/README.md -------------------------------------------------------------------------------- /at45-blockdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/at45-blockdevice.lib -------------------------------------------------------------------------------- /bootloader/DISCO_L475VG_IOT01A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/bootloader/DISCO_L475VG_IOT01A.bin -------------------------------------------------------------------------------- /bootloader/FF1705_L151CC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/bootloader/FF1705_L151CC.bin -------------------------------------------------------------------------------- /bootloader/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/bootloader/source.txt -------------------------------------------------------------------------------- /docs/porting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/docs/porting-guide.md -------------------------------------------------------------------------------- /example-firmware/disco-l475vg-blinky.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/example-firmware/disco-l475vg-blinky.bin -------------------------------------------------------------------------------- /example-firmware/xdot-blinky.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/example-firmware/xdot-blinky.bin -------------------------------------------------------------------------------- /fuota-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test-file-packets-* 3 | *.txt 4 | -------------------------------------------------------------------------------- /fuota-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/fuota-server/README.md -------------------------------------------------------------------------------- /fuota-server/class-c-activation/disco-l475vg-iot01a1-eu868.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/fuota-server/class-c-activation/disco-l475vg-iot01a1-eu868.bin -------------------------------------------------------------------------------- /fuota-server/class-c-activation/xdot-eu868.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/fuota-server/class-c-activation/xdot-eu868.bin -------------------------------------------------------------------------------- /fuota-server/loraserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/fuota-server/loraserver.js -------------------------------------------------------------------------------- /fuota-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/fuota-server/package.json -------------------------------------------------------------------------------- /fuota-server/test-file.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/fuota-server/test-file.bin -------------------------------------------------------------------------------- /mbed-lora-radio-drv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/mbed-lora-radio-drv.lib -------------------------------------------------------------------------------- /mbed-lorawan-update-client.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/mbed-lorawan-update-client.lib -------------------------------------------------------------------------------- /mbed-os.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/mbed-os.lib -------------------------------------------------------------------------------- /mbed-printf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/mbed-printf.lib -------------------------------------------------------------------------------- /mbed_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/mbed_app.json -------------------------------------------------------------------------------- /profiles/tiny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/profiles/tiny.json -------------------------------------------------------------------------------- /simconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/simconfig.json -------------------------------------------------------------------------------- /source/example_insecure_rot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/source/example_insecure_rot.c -------------------------------------------------------------------------------- /source/fotalora_mbedtls_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/source/fotalora_mbedtls_config.h -------------------------------------------------------------------------------- /source/helpers/dev_eui_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/source/helpers/dev_eui_helper.h -------------------------------------------------------------------------------- /source/helpers/lora_radio_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/source/helpers/lora_radio_helper.h -------------------------------------------------------------------------------- /source/helpers/memory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/source/helpers/memory_helper.h -------------------------------------------------------------------------------- /source/helpers/storage_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/source/helpers/storage_helper.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/source/main.cpp -------------------------------------------------------------------------------- /testplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-os-example-lorawan-fuota/HEAD/testplan.md --------------------------------------------------------------------------------