├── .gitattributes ├── .gitignore ├── LICENSE.adoc ├── README.adoc ├── application_controller ├── interactive_pyaci │ ├── aci │ │ ├── AciCommand.py │ │ └── AciEvent.py │ ├── aci_serial │ │ └── AciUart.py │ └── interactive_console.py └── serial_interface │ ├── README.adoc │ ├── rbc_mesh_interface.cpp │ ├── rbc_mesh_interface.h │ ├── serial_command.h │ ├── serial_evt.h │ ├── serial_interface.ino │ └── serial_internal.h ├── docs ├── changelog.adoc ├── dfu │ ├── DFU packets.xlsx │ ├── DFUpackets.pdf │ ├── details.adoc │ ├── dfu_serial_app.msc │ ├── dfu_serial_app.png │ └── memorymap.png ├── diagrams.xlsx ├── how_it_works.adoc ├── integrating_w_SD_apps.adoc ├── packet_format.png ├── serial_interface.adoc ├── serial_interface.xlsx ├── structure.png ├── structure.vsdx └── usage.adoc └── nRF51 ├── RTT ├── SEGGER_RTT.c ├── SEGGER_RTT.h ├── SEGGER_RTT_Conf.h └── SEGGER_RTT_printf.c ├── SDK └── bsp │ ├── boards.h │ ├── bsp.c │ ├── bsp.h │ ├── nrf6310.h │ ├── pca10000.h │ ├── pca10001.h │ ├── pca10003.h │ ├── pca10028.h │ ├── pca10031.h │ ├── pca10036.h │ ├── pca10040.h │ ├── pca20006.h │ └── wt51822.h ├── bootloader ├── README.adoc ├── arm │ ├── arm_startup_nrf51.s │ ├── arm_startup_nrf52.s │ ├── bootloader.uvopt │ ├── bootloader.uvoptx │ ├── bootloader.uvproj │ ├── bootloader.uvprojx │ ├── system_nrf51.c │ ├── system_nrf52.c │ └── system_nrf52.h ├── bin │ ├── bootloader_serial_nrf52_xxAA.hex │ ├── bootloader_serial_xxAA.hex │ ├── bootloader_serial_xxAB.hex │ ├── bootloader_serial_xxAC.hex │ ├── bootloader_xxAA.hex │ ├── bootloader_xxAB.hex │ └── bootloader_xxAC.hex ├── bootloader.c ├── bootloader_rtc.c ├── core │ ├── bootloader_app_bridge.c │ ├── bootloader_info.c │ ├── dfu_bank.c │ ├── dfu_mesh.c │ ├── dfu_transfer_mesh.c │ ├── include │ │ ├── bootloader_app_bridge.h │ │ ├── bootloader_info.h │ │ ├── dfu_bank.h │ │ ├── dfu_mesh.h │ │ ├── dfu_transfer_mesh.h │ │ └── uECC.h │ ├── uECC LICENSE.txt │ └── uECC.c ├── dfu_quick_start.adoc ├── include │ ├── bl_test.h │ ├── bootloader.h │ ├── bootloader_rtc.h │ └── transport.h ├── main.c ├── pc-util │ ├── Makefile │ ├── README.adoc │ ├── bootloader_verify_nRF51.py │ ├── bootloader_verify_nRF52.py │ ├── device_page.exe │ ├── example │ ├── example52 │ ├── flash_open_mesh_nRF51.bat │ ├── flash_open_mesh_nRF52.bat │ ├── for_loop_batch_nRF51.bat │ ├── for_loop_batch_nRF52.bat │ ├── main.c │ ├── nrfutil-script.py │ ├── nrfutil.exe │ └── read_devpage.py └── transport.c ├── examples ├── BLE_Gateway │ ├── README.adoc │ ├── arm │ │ ├── arm_startup_nrf51.s │ │ ├── arm_startup_nrf52.s │ │ ├── rbc_mesh_BLE_Gateway.uvopt │ │ ├── rbc_mesh_BLE_Gateway.uvoptx │ │ ├── rbc_mesh_BLE_Gateway.uvproj │ │ ├── rbc_mesh_BLE_Gateway.uvprojx │ │ ├── system_nrf51.c │ │ ├── system_nrf52.c │ │ └── system_nrf52.h │ ├── bin │ │ ├── rbc_gateway_example_serial_blinky_PCA10028_nRF51422_xxAC.hex │ │ ├── rbc_gateway_example_serial_blinky_PCA10031_nRF51422_xxAC.hex │ │ ├── rbc_gateway_example_serial_blinky_PCA10040_nRF52832_xxAA.hex │ │ ├── rbc_gateway_example_serial_nRF51422_xxAC.hex │ │ └── rbc_gateway_example_serial_nRF52832_xxAA.hex │ ├── blinky.c │ ├── config │ │ └── sdk_config.h │ ├── gcc │ │ ├── gcc_nrf51_s110_xxac.ld │ │ ├── gcc_nrf51_s110_xxac_dfu.ld │ │ └── makefile │ ├── include │ │ ├── blinky.h │ │ ├── led_config.h │ │ ├── nrf_adv_conn.h │ │ └── nrf_drv_config.h │ ├── led_config.c │ ├── main.c │ └── nrf_adv_conn.c ├── Bandwidth_test │ ├── README.adoc │ ├── Script_for_test │ │ └── Bandwidth_Test.py │ ├── arm │ │ ├── arm_startup_nrf51.s │ │ ├── rbc_mesh_BLE_Gateway.uvopt │ │ ├── rbc_mesh_BLE_Gateway.uvoptx │ │ ├── rbc_mesh_BLE_Gateway.uvproj │ │ ├── rbc_mesh_BLE_Gateway.uvprojx │ │ └── system_nrf51.c │ ├── gcc │ │ ├── gcc_nrf51_s110_xxac.ld │ │ ├── gcc_nrf51_s110_xxac_dfu.ld │ │ └── makefile │ ├── include │ │ ├── handle.h │ │ ├── led_config.h │ │ ├── nrf_adv_conn.h │ │ └── nrf_drv_config.h │ ├── led_config.c │ ├── main.c │ └── nrf_adv_conn.c ├── Template project │ ├── arm │ │ ├── arm_startup_nrf51.s │ │ ├── rbc_mesh_template.uvopt │ │ ├── rbc_mesh_template.uvoptx │ │ ├── rbc_mesh_template.uvproj │ │ ├── rbc_mesh_template.uvprojx │ │ └── system_nrf51.c │ ├── gcc │ │ ├── gcc_nrf51_s110_xxac.ld │ │ ├── gcc_nrf51_s110_xxac_dfu.ld │ │ └── makefile │ └── main.c ├── build.bat ├── build.sh └── ping_pong │ ├── README.adoc │ ├── arm │ ├── arm_startup_nrf51.s │ ├── ping_pong.uvopt │ ├── ping_pong.uvoptx │ ├── ping_pong.uvproj │ ├── ping_pong.uvprojx │ └── system_nrf51.c │ ├── cmd_if.c │ ├── gcc │ ├── gcc_nrf51_s110_xxac.ld │ ├── gcc_startup_nrf51.s │ └── makefile │ ├── include │ ├── cmd_if.h │ └── nrf_drv_config.h │ ├── main.c │ └── scripts │ └── ping_pong.py ├── rbc_mesh ├── include │ ├── bl_if.h │ ├── bootloader_util.h │ ├── dfu_app.h │ ├── dfu_types_mesh.h │ ├── dfu_util.h │ ├── event_handler.h │ ├── fifo.h │ ├── handle_storage.h │ ├── mesh_aci.h │ ├── mesh_flash.h │ ├── mesh_gatt.h │ ├── mesh_packet.h │ ├── nrf_flash.h │ ├── radio_control.h │ ├── rand.h │ ├── rbc_mesh_common.h │ ├── rtt_log.h │ ├── serial_command.h │ ├── serial_evt.h │ ├── serial_handler.h │ ├── timer.h │ ├── timer_scheduler.h │ ├── timeslot.h │ ├── toolchain.h │ ├── transport_control.h │ ├── trickle.h │ ├── version.h │ └── version_handler.h ├── rbc_mesh.h └── src │ ├── bootloader_util.c │ ├── dfu_app.c │ ├── dfu_util.c │ ├── event_handler.c │ ├── fifo.c │ ├── handle_storage.c │ ├── mesh_aci.c │ ├── mesh_flash.c │ ├── mesh_gatt.c │ ├── mesh_packet.c │ ├── nrf_flash.c │ ├── radio_control.c │ ├── rand.c │ ├── rbc_mesh.c │ ├── serial_handler_spi.c │ ├── serial_handler_uart.c │ ├── timer.c │ ├── timer_scheduler.c │ ├── timeslot.c │ ├── transport_control.c │ ├── trickle.c │ └── version_handler.c └── softdevices ├── s110_nrf51_8.0.0 ├── s110_nrf51_8.0.0_API │ ├── doc │ │ └── ble_api.dox │ └── include │ │ ├── ble.h │ │ ├── ble_err.h │ │ ├── ble_gap.h │ │ ├── ble_gatt.h │ │ ├── ble_gattc.h │ │ ├── ble_gatts.h │ │ ├── ble_hci.h │ │ ├── ble_l2cap.h │ │ ├── ble_ranges.h │ │ ├── ble_types.h │ │ ├── nrf_error.h │ │ ├── nrf_error_sdm.h │ │ ├── nrf_error_soc.h │ │ ├── nrf_mbr.h │ │ ├── nrf_sdm.h │ │ ├── nrf_soc.h │ │ ├── nrf_svc.h │ │ └── softdevice_assert.h ├── s110_nrf51_8.0.0_licence_agreement.pdf ├── s110_nrf51_8.0.0_licence_agreement.txt ├── s110_nrf51_8.0.0_migration-document.pdf ├── s110_nrf51_8.0.0_readme.txt ├── s110_nrf51_8.0.0_releasenotes.pdf └── s110_nrf51_8.0.0_softdevice.hex └── s132_nrf52_3.0.0 ├── s132_nrf52_3.0.0_API-update.diff ├── s132_nrf52_3.0.0_API ├── doc │ └── ble_api.dox └── include │ ├── ble.h │ ├── ble_err.h │ ├── ble_gap.h │ ├── ble_gatt.h │ ├── ble_gattc.h │ ├── ble_gatts.h │ ├── ble_hci.h │ ├── ble_l2cap.h │ ├── ble_ranges.h │ ├── ble_types.h │ ├── nrf52 │ └── nrf_mbr.h │ ├── nrf_error.h │ ├── nrf_error_sdm.h │ ├── nrf_error_soc.h │ ├── nrf_nvic.h │ ├── nrf_sdm.h │ ├── nrf_soc.h │ └── nrf_svc.h ├── s132_nrf52_3.0.0_license-agreement.pdf ├── s132_nrf52_3.0.0_license-agreement.txt ├── s132_nrf52_3.0.0_migration-document.pdf ├── s132_nrf52_3.0.0_readme.txt ├── s132_nrf52_3.0.0_release-notes.pdf └── s132_nrf52_3.0.0_softdevice.hex /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/LICENSE.adoc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/README.adoc -------------------------------------------------------------------------------- /application_controller/interactive_pyaci/aci/AciCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/interactive_pyaci/aci/AciCommand.py -------------------------------------------------------------------------------- /application_controller/interactive_pyaci/aci/AciEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/interactive_pyaci/aci/AciEvent.py -------------------------------------------------------------------------------- /application_controller/interactive_pyaci/aci_serial/AciUart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/interactive_pyaci/aci_serial/AciUart.py -------------------------------------------------------------------------------- /application_controller/interactive_pyaci/interactive_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/interactive_pyaci/interactive_console.py -------------------------------------------------------------------------------- /application_controller/serial_interface/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/serial_interface/README.adoc -------------------------------------------------------------------------------- /application_controller/serial_interface/rbc_mesh_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/serial_interface/rbc_mesh_interface.cpp -------------------------------------------------------------------------------- /application_controller/serial_interface/rbc_mesh_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/serial_interface/rbc_mesh_interface.h -------------------------------------------------------------------------------- /application_controller/serial_interface/serial_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/serial_interface/serial_command.h -------------------------------------------------------------------------------- /application_controller/serial_interface/serial_evt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/serial_interface/serial_evt.h -------------------------------------------------------------------------------- /application_controller/serial_interface/serial_interface.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/serial_interface/serial_interface.ino -------------------------------------------------------------------------------- /application_controller/serial_interface/serial_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/application_controller/serial_interface/serial_internal.h -------------------------------------------------------------------------------- /docs/changelog.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/changelog.adoc -------------------------------------------------------------------------------- /docs/dfu/DFU packets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/dfu/DFU packets.xlsx -------------------------------------------------------------------------------- /docs/dfu/DFUpackets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/dfu/DFUpackets.pdf -------------------------------------------------------------------------------- /docs/dfu/details.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/dfu/details.adoc -------------------------------------------------------------------------------- /docs/dfu/dfu_serial_app.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/dfu/dfu_serial_app.msc -------------------------------------------------------------------------------- /docs/dfu/dfu_serial_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/dfu/dfu_serial_app.png -------------------------------------------------------------------------------- /docs/dfu/memorymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/dfu/memorymap.png -------------------------------------------------------------------------------- /docs/diagrams.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/diagrams.xlsx -------------------------------------------------------------------------------- /docs/how_it_works.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/how_it_works.adoc -------------------------------------------------------------------------------- /docs/integrating_w_SD_apps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/integrating_w_SD_apps.adoc -------------------------------------------------------------------------------- /docs/packet_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/packet_format.png -------------------------------------------------------------------------------- /docs/serial_interface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/serial_interface.adoc -------------------------------------------------------------------------------- /docs/serial_interface.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/serial_interface.xlsx -------------------------------------------------------------------------------- /docs/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/structure.png -------------------------------------------------------------------------------- /docs/structure.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/structure.vsdx -------------------------------------------------------------------------------- /docs/usage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/docs/usage.adoc -------------------------------------------------------------------------------- /nRF51/RTT/SEGGER_RTT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/RTT/SEGGER_RTT.c -------------------------------------------------------------------------------- /nRF51/RTT/SEGGER_RTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/RTT/SEGGER_RTT.h -------------------------------------------------------------------------------- /nRF51/RTT/SEGGER_RTT_Conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/RTT/SEGGER_RTT_Conf.h -------------------------------------------------------------------------------- /nRF51/RTT/SEGGER_RTT_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/RTT/SEGGER_RTT_printf.c -------------------------------------------------------------------------------- /nRF51/SDK/bsp/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/boards.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/bsp.c -------------------------------------------------------------------------------- /nRF51/SDK/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/bsp.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/nrf6310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/nrf6310.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca10000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca10000.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca10001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca10001.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca10003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca10003.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca10028.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca10028.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca10031.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca10031.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca10036.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca10036.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca10040.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca10040.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/pca20006.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/pca20006.h -------------------------------------------------------------------------------- /nRF51/SDK/bsp/wt51822.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/SDK/bsp/wt51822.h -------------------------------------------------------------------------------- /nRF51/bootloader/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/README.adoc -------------------------------------------------------------------------------- /nRF51/bootloader/arm/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/arm_startup_nrf51.s -------------------------------------------------------------------------------- /nRF51/bootloader/arm/arm_startup_nrf52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/arm_startup_nrf52.s -------------------------------------------------------------------------------- /nRF51/bootloader/arm/bootloader.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/bootloader.uvopt -------------------------------------------------------------------------------- /nRF51/bootloader/arm/bootloader.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/bootloader.uvoptx -------------------------------------------------------------------------------- /nRF51/bootloader/arm/bootloader.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/bootloader.uvproj -------------------------------------------------------------------------------- /nRF51/bootloader/arm/bootloader.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/bootloader.uvprojx -------------------------------------------------------------------------------- /nRF51/bootloader/arm/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/system_nrf51.c -------------------------------------------------------------------------------- /nRF51/bootloader/arm/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/system_nrf52.c -------------------------------------------------------------------------------- /nRF51/bootloader/arm/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/arm/system_nrf52.h -------------------------------------------------------------------------------- /nRF51/bootloader/bin/bootloader_serial_nrf52_xxAA.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bin/bootloader_serial_nrf52_xxAA.hex -------------------------------------------------------------------------------- /nRF51/bootloader/bin/bootloader_serial_xxAA.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bin/bootloader_serial_xxAA.hex -------------------------------------------------------------------------------- /nRF51/bootloader/bin/bootloader_serial_xxAB.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bin/bootloader_serial_xxAB.hex -------------------------------------------------------------------------------- /nRF51/bootloader/bin/bootloader_serial_xxAC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bin/bootloader_serial_xxAC.hex -------------------------------------------------------------------------------- /nRF51/bootloader/bin/bootloader_xxAA.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bin/bootloader_xxAA.hex -------------------------------------------------------------------------------- /nRF51/bootloader/bin/bootloader_xxAB.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bin/bootloader_xxAB.hex -------------------------------------------------------------------------------- /nRF51/bootloader/bin/bootloader_xxAC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bin/bootloader_xxAC.hex -------------------------------------------------------------------------------- /nRF51/bootloader/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bootloader.c -------------------------------------------------------------------------------- /nRF51/bootloader/bootloader_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/bootloader_rtc.c -------------------------------------------------------------------------------- /nRF51/bootloader/core/bootloader_app_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/bootloader_app_bridge.c -------------------------------------------------------------------------------- /nRF51/bootloader/core/bootloader_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/bootloader_info.c -------------------------------------------------------------------------------- /nRF51/bootloader/core/dfu_bank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/dfu_bank.c -------------------------------------------------------------------------------- /nRF51/bootloader/core/dfu_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/dfu_mesh.c -------------------------------------------------------------------------------- /nRF51/bootloader/core/dfu_transfer_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/dfu_transfer_mesh.c -------------------------------------------------------------------------------- /nRF51/bootloader/core/include/bootloader_app_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/include/bootloader_app_bridge.h -------------------------------------------------------------------------------- /nRF51/bootloader/core/include/bootloader_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/include/bootloader_info.h -------------------------------------------------------------------------------- /nRF51/bootloader/core/include/dfu_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/include/dfu_bank.h -------------------------------------------------------------------------------- /nRF51/bootloader/core/include/dfu_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/include/dfu_mesh.h -------------------------------------------------------------------------------- /nRF51/bootloader/core/include/dfu_transfer_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/include/dfu_transfer_mesh.h -------------------------------------------------------------------------------- /nRF51/bootloader/core/include/uECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/include/uECC.h -------------------------------------------------------------------------------- /nRF51/bootloader/core/uECC LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/uECC LICENSE.txt -------------------------------------------------------------------------------- /nRF51/bootloader/core/uECC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/core/uECC.c -------------------------------------------------------------------------------- /nRF51/bootloader/dfu_quick_start.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/dfu_quick_start.adoc -------------------------------------------------------------------------------- /nRF51/bootloader/include/bl_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/include/bl_test.h -------------------------------------------------------------------------------- /nRF51/bootloader/include/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/include/bootloader.h -------------------------------------------------------------------------------- /nRF51/bootloader/include/bootloader_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/include/bootloader_rtc.h -------------------------------------------------------------------------------- /nRF51/bootloader/include/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/include/transport.h -------------------------------------------------------------------------------- /nRF51/bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/main.c -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/Makefile -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/README.adoc -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/bootloader_verify_nRF51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/bootloader_verify_nRF51.py -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/bootloader_verify_nRF52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/bootloader_verify_nRF52.py -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/device_page.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/device_page.exe -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/example -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/example52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/example52 -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/flash_open_mesh_nRF51.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/flash_open_mesh_nRF51.bat -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/flash_open_mesh_nRF52.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/flash_open_mesh_nRF52.bat -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/for_loop_batch_nRF51.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/for_loop_batch_nRF51.bat -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/for_loop_batch_nRF52.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/for_loop_batch_nRF52.bat -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/main.c -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/nrfutil-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/nrfutil-script.py -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/nrfutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/nrfutil.exe -------------------------------------------------------------------------------- /nRF51/bootloader/pc-util/read_devpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/pc-util/read_devpage.py -------------------------------------------------------------------------------- /nRF51/bootloader/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/bootloader/transport.c -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/README.adoc -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/arm_startup_nrf51.s -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/arm_startup_nrf52.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/arm_startup_nrf52.s -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvopt -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvoptx -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvproj -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/rbc_mesh_BLE_Gateway.uvprojx -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/system_nrf51.c -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/system_nrf52.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/system_nrf52.c -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/arm/system_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/arm/system_nrf52.h -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_blinky_PCA10028_nRF51422_xxAC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_blinky_PCA10028_nRF51422_xxAC.hex -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_blinky_PCA10031_nRF51422_xxAC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_blinky_PCA10031_nRF51422_xxAC.hex -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_blinky_PCA10040_nRF52832_xxAA.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_blinky_PCA10040_nRF52832_xxAA.hex -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_nRF51422_xxAC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_nRF51422_xxAC.hex -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_nRF52832_xxAA.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/bin/rbc_gateway_example_serial_nRF52832_xxAA.hex -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/blinky.c -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/config/sdk_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/config/sdk_config.h -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/gcc/gcc_nrf51_s110_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/gcc/gcc_nrf51_s110_xxac.ld -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/gcc/gcc_nrf51_s110_xxac_dfu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/gcc/gcc_nrf51_s110_xxac_dfu.ld -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/gcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/gcc/makefile -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/include/blinky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/include/blinky.h -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/include/led_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/include/led_config.h -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/include/nrf_adv_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/include/nrf_adv_conn.h -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/include/nrf_drv_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/include/nrf_drv_config.h -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/led_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/led_config.c -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/main.c -------------------------------------------------------------------------------- /nRF51/examples/BLE_Gateway/nrf_adv_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/BLE_Gateway/nrf_adv_conn.c -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/README.adoc -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/Script_for_test/Bandwidth_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/Script_for_test/Bandwidth_Test.py -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/arm/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/arm/arm_startup_nrf51.s -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvopt -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvoptx -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvproj -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/arm/rbc_mesh_BLE_Gateway.uvprojx -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/arm/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/arm/system_nrf51.c -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/gcc/gcc_nrf51_s110_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/gcc/gcc_nrf51_s110_xxac.ld -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/gcc/gcc_nrf51_s110_xxac_dfu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/gcc/gcc_nrf51_s110_xxac_dfu.ld -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/gcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/gcc/makefile -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/include/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/include/handle.h -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/include/led_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/include/led_config.h -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/include/nrf_adv_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/include/nrf_adv_conn.h -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/include/nrf_drv_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/include/nrf_drv_config.h -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/led_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/led_config.c -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/main.c -------------------------------------------------------------------------------- /nRF51/examples/Bandwidth_test/nrf_adv_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Bandwidth_test/nrf_adv_conn.c -------------------------------------------------------------------------------- /nRF51/examples/Template project/arm/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/arm/arm_startup_nrf51.s -------------------------------------------------------------------------------- /nRF51/examples/Template project/arm/rbc_mesh_template.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/arm/rbc_mesh_template.uvopt -------------------------------------------------------------------------------- /nRF51/examples/Template project/arm/rbc_mesh_template.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/arm/rbc_mesh_template.uvoptx -------------------------------------------------------------------------------- /nRF51/examples/Template project/arm/rbc_mesh_template.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/arm/rbc_mesh_template.uvproj -------------------------------------------------------------------------------- /nRF51/examples/Template project/arm/rbc_mesh_template.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/arm/rbc_mesh_template.uvprojx -------------------------------------------------------------------------------- /nRF51/examples/Template project/arm/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/arm/system_nrf51.c -------------------------------------------------------------------------------- /nRF51/examples/Template project/gcc/gcc_nrf51_s110_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/gcc/gcc_nrf51_s110_xxac.ld -------------------------------------------------------------------------------- /nRF51/examples/Template project/gcc/gcc_nrf51_s110_xxac_dfu.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/gcc/gcc_nrf51_s110_xxac_dfu.ld -------------------------------------------------------------------------------- /nRF51/examples/Template project/gcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/gcc/makefile -------------------------------------------------------------------------------- /nRF51/examples/Template project/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/Template project/main.c -------------------------------------------------------------------------------- /nRF51/examples/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/build.bat -------------------------------------------------------------------------------- /nRF51/examples/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/build.sh -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/README.adoc -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/arm/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/arm/arm_startup_nrf51.s -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/arm/ping_pong.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/arm/ping_pong.uvopt -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/arm/ping_pong.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/arm/ping_pong.uvoptx -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/arm/ping_pong.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/arm/ping_pong.uvproj -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/arm/ping_pong.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/arm/ping_pong.uvprojx -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/arm/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/arm/system_nrf51.c -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/cmd_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/cmd_if.c -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/gcc/gcc_nrf51_s110_xxac.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/gcc/gcc_nrf51_s110_xxac.ld -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/gcc/gcc_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/gcc/gcc_startup_nrf51.s -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/gcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/gcc/makefile -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/include/cmd_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/include/cmd_if.h -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/include/nrf_drv_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/include/nrf_drv_config.h -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/main.c -------------------------------------------------------------------------------- /nRF51/examples/ping_pong/scripts/ping_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/examples/ping_pong/scripts/ping_pong.py -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/bl_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/bl_if.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/bootloader_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/bootloader_util.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/dfu_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/dfu_app.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/dfu_types_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/dfu_types_mesh.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/dfu_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/dfu_util.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/event_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/event_handler.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/fifo.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/handle_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/handle_storage.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/mesh_aci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/mesh_aci.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/mesh_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/mesh_flash.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/mesh_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/mesh_gatt.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/mesh_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/mesh_packet.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/nrf_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/nrf_flash.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/radio_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/radio_control.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/rand.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/rbc_mesh_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/rbc_mesh_common.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/rtt_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/rtt_log.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/serial_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/serial_command.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/serial_evt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/serial_evt.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/serial_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/serial_handler.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/timer.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/timer_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/timer_scheduler.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/timeslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/timeslot.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/toolchain.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/transport_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/transport_control.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/trickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/trickle.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/version.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/include/version_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/include/version_handler.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/rbc_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/rbc_mesh.h -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/bootloader_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/bootloader_util.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/dfu_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/dfu_app.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/dfu_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/dfu_util.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/event_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/event_handler.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/fifo.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/handle_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/handle_storage.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/mesh_aci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/mesh_aci.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/mesh_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/mesh_flash.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/mesh_gatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/mesh_gatt.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/mesh_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/mesh_packet.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/nrf_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/nrf_flash.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/radio_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/radio_control.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/rand.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/rbc_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/rbc_mesh.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/serial_handler_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/serial_handler_spi.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/serial_handler_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/serial_handler_uart.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/timer.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/timer_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/timer_scheduler.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/timeslot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/timeslot.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/transport_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/transport_control.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/trickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/trickle.c -------------------------------------------------------------------------------- /nRF51/rbc_mesh/src/version_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/rbc_mesh/src/version_handler.c -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/doc/ble_api.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/doc/ble_api.dox -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_err.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gap.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatt.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gattc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_gatts.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_hci.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_l2cap.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_ranges.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/ble_types.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_sdm.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_error_soc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_mbr.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_sdm.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_soc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/nrf_svc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/softdevice_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_API/include/softdevice_assert.h -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_licence_agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_licence_agreement.pdf -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_licence_agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_licence_agreement.txt -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_migration-document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_migration-document.pdf -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_readme.txt -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_releasenotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_releasenotes.pdf -------------------------------------------------------------------------------- /nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s110_nrf51_8.0.0/s110_nrf51_8.0.0_softdevice.hex -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API-update.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API-update.diff -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/doc/ble_api.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/doc/ble_api.dox -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_err.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gap.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gatt.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gattc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_gatts.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_hci.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_l2cap.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_ranges.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/ble_types.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf52/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf52/nrf_mbr.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_error.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_error_sdm.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_error_soc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_nvic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_nvic.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_sdm.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_soc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_API/include/nrf_svc.h -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_license-agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_license-agreement.pdf -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_license-agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_license-agreement.txt -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_migration-document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_migration-document.pdf -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_readme.txt -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_release-notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_release-notes.pdf -------------------------------------------------------------------------------- /nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NordicPlayground/nRF51-ble-bcast-mesh/HEAD/nRF51/softdevices/s132_nrf52_3.0.0/s132_nrf52_3.0.0_softdevice.hex --------------------------------------------------------------------------------