├── .gitignore ├── ble_wiegand.c ├── ble_wiegand.h ├── client ├── .gitignore ├── README.md ├── blekey.py └── requirements.txt ├── device_manager_cnfg.h ├── docs └── MDBT40Z0120150209.jpg ├── firmware ├── app_valid_setting_apply.hex ├── bootloader.hex ├── fw_update.mp4 ├── mergehex.exe ├── readme.md └── super.hex ├── gcc ├── Makefile ├── Makefile.posix ├── blekey.Makefile └── flash.jlink ├── hardware ├── WIEG.lib ├── _saved_weigand.sch ├── agapenor │ ├── agapenor.zip │ ├── weigand-B_Cu.gbl │ ├── weigand-B_Mask.gbs │ ├── weigand-B_SilkS.gbo │ ├── weigand-Edge_Cuts.gbr │ ├── weigand-F_Cu.gtl │ ├── weigand-F_Mask.gts │ ├── weigand-F_SilkS.gto │ └── weigand.drl ├── fp-lib-table ├── gerbs │ ├── gerbs.zip │ ├── wiegand.GBL │ ├── wiegand.GBO │ ├── wiegand.GBS │ ├── wiegand.GML │ ├── wiegand.GTL │ ├── wiegand.GTO │ ├── wiegand.GTS │ └── wiegand.TXT ├── new_wieg.pretty │ ├── 10PIN_SWD.kicad_mod │ ├── BU1632SM-JJ-GTR.kicad_mod │ ├── CR2032.kicad_mod │ ├── FC-135.kicad_mod │ ├── GND_VIA.kicad_mod │ ├── IDC3POS.kicad_mod │ ├── MDBT40.kicad_mod │ ├── Pin_Header_Straight_1x15_cust.kicad_mod │ ├── S8211R.kicad_mod │ └── SOT-23-FET.kicad_mod ├── weigand-cache.lib ├── weigand-rescue.lib ├── weigand.bak ├── weigand.cmp ├── weigand.drl ├── weigand.kicad_pcb ├── weigand.kicad_pcb-bak ├── weigand.net ├── weigand.pro ├── weigand.sch ├── weigand_cr2032.kicad_pcb └── wieg.mod ├── main.c ├── nordic ├── .DS_Store ├── nrf51822 │ ├── Board │ │ ├── nrf6310 │ │ │ ├── blinky_example │ │ │ │ ├── arm │ │ │ │ │ ├── blinky.uvopt │ │ │ │ │ ├── blinky.uvoptx │ │ │ │ │ ├── blinky.uvproj │ │ │ │ │ └── blinky.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── iar │ │ │ │ │ ├── blinky.ewp │ │ │ │ │ └── blinky.eww │ │ │ │ └── main.c │ │ │ ├── debouncer_example │ │ │ │ ├── arm │ │ │ │ │ ├── debouncer_example.uvopt │ │ │ │ │ ├── debouncer_example.uvoptx │ │ │ │ │ ├── debouncer_example.uvproj │ │ │ │ │ └── debouncer_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── lib_debounce.c │ │ │ │ ├── lib_debounce.h │ │ │ │ └── main.c │ │ │ ├── device_firmware_updates │ │ │ │ ├── ble_dfu_send_hex │ │ │ │ │ ├── dfu │ │ │ │ │ │ ├── MasterEmulator.dll │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ble_dfu.py │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ ├── intelhex.py │ │ │ │ │ │ ├── log_handler.py │ │ │ │ │ │ ├── main.py │ │ │ │ │ │ └── master_emulator.py │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── test_images_update │ │ │ │ │ │ ├── dfu_test_bootloader_b.hex │ │ │ │ │ │ ├── dfu_test_softdevice_b.hex │ │ │ │ │ │ ├── dfu_test_softdevice_big.hex │ │ │ │ │ │ └── dfu_test_softdevice_w_bootloader_b.hex │ │ │ │ ├── bootloader │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── JLinkSettings.ini │ │ │ │ │ │ ├── bootloader.uvopt │ │ │ │ │ │ ├── bootloader.uvproj │ │ │ │ │ │ └── load_softdevice.ini │ │ │ │ │ ├── arm_startup_nrf51.s │ │ │ │ │ ├── include │ │ │ │ │ │ └── pstorage_platform.h │ │ │ │ │ └── main.c │ │ │ │ └── hci_dfu_send_hex │ │ │ │ │ ├── crc16pure.py │ │ │ │ │ ├── hci_dfu_send_hex.py │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── test_images_update │ │ │ │ │ ├── dfu_test_bootloader_b_hci.hex │ │ │ │ │ ├── dfu_test_softdevice_b.hex │ │ │ │ │ ├── dfu_test_softdevice_big.hex │ │ │ │ │ └── dfu_test_softdevice_w_bootloader_b_hci.hex │ │ │ ├── direct_test_mode │ │ │ │ ├── arm │ │ │ │ │ ├── direct_test_mode.uvopt │ │ │ │ │ ├── direct_test_mode.uvoptx │ │ │ │ │ ├── direct_test_mode.uvproj │ │ │ │ │ └── direct_test_mode.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ └── makefile │ │ │ │ └── main.c │ │ │ ├── esb │ │ │ │ └── esb_ptx_prx │ │ │ │ │ ├── arm │ │ │ │ │ ├── esb_prx_ack_payload.uvopt │ │ │ │ │ ├── esb_prx_ack_payload.uvoptx │ │ │ │ │ ├── esb_prx_ack_payload.uvproj │ │ │ │ │ ├── esb_prx_ack_payload.uvprojx │ │ │ │ │ ├── esb_ptx_ack_payload.uvopt │ │ │ │ │ ├── esb_ptx_ack_payload.uvoptx │ │ │ │ │ ├── esb_ptx_ack_payload.uvproj │ │ │ │ │ └── esb_ptx_ack_payload.uvprojx │ │ │ │ │ ├── gcc_rx │ │ │ │ │ └── Makefile │ │ │ │ │ ├── gcc_tx │ │ │ │ │ └── Makefile │ │ │ │ │ ├── main_esb_prx_ack_payload.c │ │ │ │ │ └── main_esb_ptx_ack_payload.c │ │ │ ├── ext_sensors │ │ │ │ ├── adns2080_example │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── adns2080_example.uvopt │ │ │ │ │ │ ├── adns2080_example.uvoptx │ │ │ │ │ │ ├── adns2080_example.uvproj │ │ │ │ │ │ └── adns2080_example.uvprojx │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── build.bat │ │ │ │ │ │ └── flash.bat │ │ │ │ │ ├── main.c │ │ │ │ │ └── sdio_config.h │ │ │ │ └── cherry8x16_example │ │ │ │ │ ├── arm │ │ │ │ │ ├── cherry8x16_example.uvopt │ │ │ │ │ ├── cherry8x16_example.uvoptx │ │ │ │ │ ├── cherry8x16_example.uvproj │ │ │ │ │ └── cherry8x16_example.uvprojx │ │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ │ └── main.c │ │ │ ├── flashwrite_example │ │ │ │ ├── arm │ │ │ │ │ ├── flashwrite_example.uvopt │ │ │ │ │ ├── flashwrite_example.uvoptx │ │ │ │ │ ├── flashwrite_example.uvproj │ │ │ │ │ └── flashwrite_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── gpiote_example │ │ │ │ ├── arm │ │ │ │ │ ├── gpiote_example.uvopt │ │ │ │ │ ├── gpiote_example.uvoptx │ │ │ │ │ ├── gpiote_example.uvproj │ │ │ │ │ └── gpiote_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── gzll │ │ │ │ ├── gzll_ack_payload │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── gzll_device_ack_payload.uvopt │ │ │ │ │ │ ├── gzll_device_ack_payload.uvoptx │ │ │ │ │ │ ├── gzll_device_ack_payload.uvproj │ │ │ │ │ │ ├── gzll_device_ack_payload.uvprojx │ │ │ │ │ │ ├── gzll_host_ack_payload.uvopt │ │ │ │ │ │ ├── gzll_host_ack_payload.uvoptx │ │ │ │ │ │ ├── gzll_host_ack_payload.uvproj │ │ │ │ │ │ └── gzll_host_ack_payload.uvprojx │ │ │ │ │ ├── gcc_device │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── gcc_host │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── main_device_ack_payload.c │ │ │ │ │ └── main_host_ack_payload.c │ │ │ │ ├── gzp_desktop_emulator │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── gzp_desktop_mouse_keyboard_emulator_nrf51.uvopt │ │ │ │ │ │ ├── gzp_desktop_mouse_keyboard_emulator_nrf51.uvoptx │ │ │ │ │ │ ├── gzp_desktop_mouse_keyboard_emulator_nrf51.uvproj │ │ │ │ │ │ └── gzp_desktop_mouse_keyboard_emulator_nrf51.uvprojx │ │ │ │ │ ├── keyboard_emulator.c │ │ │ │ │ ├── keyboard_emulator.h │ │ │ │ │ ├── main_mouse_keyboard_emulator_nrf51.c │ │ │ │ │ ├── mouse_sensor_emulator.c │ │ │ │ │ ├── mouse_sensor_emulator.h │ │ │ │ │ ├── nrf_gzllde_params.h │ │ │ │ │ └── nrf_gzp_config.h │ │ │ │ └── gzp_dynamic_pairing │ │ │ │ │ ├── arm │ │ │ │ │ ├── gzp_device_dynamic_pairing.uvopt │ │ │ │ │ ├── gzp_device_dynamic_pairing.uvoptx │ │ │ │ │ ├── gzp_device_dynamic_pairing.uvproj │ │ │ │ │ ├── gzp_device_dynamic_pairing.uvprojx │ │ │ │ │ ├── gzp_host_dynamic_pairing.uvopt │ │ │ │ │ ├── gzp_host_dynamic_pairing.uvoptx │ │ │ │ │ ├── gzp_host_dynamic_pairing.uvproj │ │ │ │ │ └── gzp_host_dynamic_pairing.uvprojx │ │ │ │ │ ├── main_device_dynamic_pairing.c │ │ │ │ │ ├── main_host_dynamic_pairing.c │ │ │ │ │ └── nrf_gzp_config.h │ │ │ ├── nRF6350_radio_configuration_example │ │ │ │ ├── arm │ │ │ │ │ ├── nRF6350_radio_configuration_example.uvopt │ │ │ │ │ ├── nRF6350_radio_configuration_example.uvoptx │ │ │ │ │ ├── nRF6350_radio_configuration_example.uvproj │ │ │ │ │ └── nRF6350_radio_configuration_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── main.c │ │ │ │ └── twi_master_config.h │ │ │ ├── pin_change_int_example │ │ │ │ ├── arm │ │ │ │ │ ├── pin_change_int_example.uvopt │ │ │ │ │ ├── pin_change_int_example.uvoptx │ │ │ │ │ ├── pin_change_int_example.uvproj │ │ │ │ │ └── pin_change_int_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── ppi_example │ │ │ │ ├── arm │ │ │ │ │ ├── ppi_example.uvopt │ │ │ │ │ ├── ppi_example.uvoptx │ │ │ │ │ ├── ppi_example.uvproj │ │ │ │ │ └── ppi_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── pwm_analyzer │ │ │ │ ├── arm │ │ │ │ │ ├── pwm_analyzer.uvopt │ │ │ │ │ ├── pwm_analyzer.uvoptx │ │ │ │ │ ├── pwm_analyzer.uvproj │ │ │ │ │ └── pwm_analyzer.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── pwm_example │ │ │ │ ├── arm │ │ │ │ │ ├── pwm_example.uvopt │ │ │ │ │ ├── pwm_example.uvoptx │ │ │ │ │ ├── pwm_example.uvproj │ │ │ │ │ └── pwm_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── radio_example │ │ │ │ ├── arm │ │ │ │ │ ├── radio_rx_example.uvopt │ │ │ │ │ ├── radio_rx_example.uvoptx │ │ │ │ │ ├── radio_rx_example.uvproj │ │ │ │ │ ├── radio_rx_example.uvprojx │ │ │ │ │ ├── radio_tx_example.uvopt │ │ │ │ │ ├── radio_tx_example.uvoptx │ │ │ │ │ ├── radio_tx_example.uvproj │ │ │ │ │ └── radio_tx_example.uvprojx │ │ │ │ ├── gcc_rx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── gcc_tx │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── main_rx.c │ │ │ │ ├── main_tx.c │ │ │ │ ├── radio_config.c │ │ │ │ └── radio_config.h │ │ │ ├── radio_test_example │ │ │ │ ├── arm │ │ │ │ │ ├── radio_test_example.uvopt │ │ │ │ │ ├── radio_test_example.uvoptx │ │ │ │ │ ├── radio_test_example.uvproj │ │ │ │ │ └── radio_test_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── main.c │ │ │ │ ├── radio_test.c │ │ │ │ ├── radio_test.h │ │ │ │ ├── uart.c │ │ │ │ └── uart.h │ │ │ ├── ram_retention_example │ │ │ │ ├── arm │ │ │ │ │ ├── ram_retention_example.uvopt │ │ │ │ │ ├── ram_retention_example.uvoptx │ │ │ │ │ ├── ram_retention_example.uvproj │ │ │ │ │ └── ram_retention_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── rng_example │ │ │ │ ├── arm │ │ │ │ │ ├── rng_example.uvopt │ │ │ │ │ ├── rng_example.uvoptx │ │ │ │ │ ├── rng_example.uvproj │ │ │ │ │ └── rng_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── rtc_example │ │ │ │ ├── arm │ │ │ │ │ ├── rtc_example.uvopt │ │ │ │ │ ├── rtc_example.uvoptx │ │ │ │ │ ├── rtc_example.uvproj │ │ │ │ │ └── rtc_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── s110 │ │ │ │ ├── ble_app_alert_notification │ │ │ │ │ ├── AlertNotifServer.bin │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_alert_notification.uvopt │ │ │ │ │ │ ├── ble_app_alert_notification.uvoptx │ │ │ │ │ │ ├── ble_app_alert_notification.uvproj │ │ │ │ │ │ ├── ble_app_alert_notification.uvprojx │ │ │ │ │ │ ├── ble_app_alert_notification_serialization.uvopt │ │ │ │ │ │ ├── ble_app_alert_notification_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_alert_notification_serialization.uvproj │ │ │ │ │ │ └── ble_app_alert_notification_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_alert_notification.Makefile │ │ │ │ │ │ ├── ble_app_alert_notification_spi.Makefile │ │ │ │ │ │ ├── ble_app_alert_notification_uart.Makefile │ │ │ │ │ │ └── ble_app_alert_notification_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_beacon │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── _build_serialization │ │ │ │ │ │ │ ├── input.lnt │ │ │ │ │ │ │ └── output.lnt │ │ │ │ │ │ ├── ble_app_beacon.uvopt │ │ │ │ │ │ ├── ble_app_beacon.uvoptx │ │ │ │ │ │ ├── ble_app_beacon.uvproj │ │ │ │ │ │ ├── ble_app_beacon.uvprojx │ │ │ │ │ │ ├── ble_app_beacon_serialization.uvopt │ │ │ │ │ │ ├── ble_app_beacon_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_beacon_serialization.uvproj │ │ │ │ │ │ └── ble_app_beacon_serialization.uvprojx │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_beacon.Makefile │ │ │ │ │ │ ├── ble_app_beacon_spi.Makefile │ │ │ │ │ │ ├── ble_app_beacon_uart.Makefile │ │ │ │ │ │ └── ble_app_beacon_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_bps │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_bps.uvopt │ │ │ │ │ │ ├── ble_app_bps.uvoptx │ │ │ │ │ │ ├── ble_app_bps.uvproj │ │ │ │ │ │ ├── ble_app_bps.uvprojx │ │ │ │ │ │ ├── ble_app_bps_serialization.uvopt │ │ │ │ │ │ ├── ble_app_bps_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_bps_serialization.uvproj │ │ │ │ │ │ └── ble_app_bps_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_bps.Makefile │ │ │ │ │ │ ├── ble_app_bps_spi.Makefile │ │ │ │ │ │ ├── ble_app_bps_uart.Makefile │ │ │ │ │ │ └── ble_app_bps_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_cscs │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_cscs.uvopt │ │ │ │ │ │ ├── ble_app_cscs.uvoptx │ │ │ │ │ │ ├── ble_app_cscs.uvproj │ │ │ │ │ │ ├── ble_app_cscs.uvprojx │ │ │ │ │ │ ├── ble_app_cscs_serialization.uvopt │ │ │ │ │ │ ├── ble_app_cscs_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_cscs_serialization.uvproj │ │ │ │ │ │ └── ble_app_cscs_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_cscs.Makefile │ │ │ │ │ │ ├── ble_app_cscs_spi.Makefile │ │ │ │ │ │ ├── ble_app_cscs_uart.Makefile │ │ │ │ │ │ └── ble_app_cscs_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_gls │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_gls.uvopt │ │ │ │ │ │ ├── ble_app_gls.uvoptx │ │ │ │ │ │ ├── ble_app_gls.uvproj │ │ │ │ │ │ ├── ble_app_gls.uvprojx │ │ │ │ │ │ ├── ble_app_gls_serialization.uvopt │ │ │ │ │ │ ├── ble_app_gls_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_gls_serialization.uvproj │ │ │ │ │ │ └── ble_app_gls_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_gls.Makefile │ │ │ │ │ │ ├── ble_app_gls_spi.Makefile │ │ │ │ │ │ ├── ble_app_gls_uart.Makefile │ │ │ │ │ │ └── ble_app_gls_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ ├── pstorage_platform.h │ │ │ │ │ └── twi_master_config.h │ │ │ │ ├── ble_app_gzll │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_gzll.uvopt │ │ │ │ │ │ ├── ble_app_gzll.uvoptx │ │ │ │ │ │ ├── ble_app_gzll.uvproj │ │ │ │ │ │ └── ble_app_gzll.uvprojx │ │ │ │ │ ├── ble_app_gzll_common.h │ │ │ │ │ ├── ble_app_gzll_device.c │ │ │ │ │ ├── ble_app_gzll_device.h │ │ │ │ │ ├── ble_app_gzll_hr.c │ │ │ │ │ ├── ble_app_gzll_hr.h │ │ │ │ │ ├── ble_app_gzll_ui.c │ │ │ │ │ ├── ble_app_gzll_ui.h │ │ │ │ │ ├── ble_gzll_app_timer.c │ │ │ │ │ ├── gcc │ │ │ │ │ │ └── ble_app_gzll.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_hids_keyboard │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_hids_keyboard.uvopt │ │ │ │ │ │ ├── ble_app_hids_keyboard.uvoptx │ │ │ │ │ │ ├── ble_app_hids_keyboard.uvproj │ │ │ │ │ │ ├── ble_app_hids_keyboard.uvprojx │ │ │ │ │ │ ├── ble_app_hids_keyboard_serialization.uvopt │ │ │ │ │ │ ├── ble_app_hids_keyboard_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_hids_keyboard_serialization.uvproj │ │ │ │ │ │ └── ble_app_hids_keyboard_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_hids_keyboard.Makefile │ │ │ │ │ │ ├── ble_app_hids_keyboard_spi.Makefile │ │ │ │ │ │ ├── ble_app_hids_keyboard_uart.Makefile │ │ │ │ │ │ └── ble_app_hids_keyboard_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_hids_mouse │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_hids_mouse.uvopt │ │ │ │ │ │ ├── ble_app_hids_mouse.uvoptx │ │ │ │ │ │ ├── ble_app_hids_mouse.uvproj │ │ │ │ │ │ ├── ble_app_hids_mouse.uvprojx │ │ │ │ │ │ ├── ble_app_hids_mouse_serialization.uvopt │ │ │ │ │ │ ├── ble_app_hids_mouse_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_hids_mouse_serialization.uvproj │ │ │ │ │ │ └── ble_app_hids_mouse_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_hids_mouse.Makefile │ │ │ │ │ │ ├── ble_app_hids_mouse_spi.Makefile │ │ │ │ │ │ ├── ble_app_hids_mouse_uart.Makefile │ │ │ │ │ │ └── ble_app_hids_mouse_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_hrs │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── _build_serialization │ │ │ │ │ │ │ ├── input.lnt │ │ │ │ │ │ │ └── output.lnt │ │ │ │ │ │ ├── ble_app_hrs.uvopt │ │ │ │ │ │ ├── ble_app_hrs.uvoptx │ │ │ │ │ │ ├── ble_app_hrs.uvproj │ │ │ │ │ │ ├── ble_app_hrs.uvprojx │ │ │ │ │ │ ├── ble_app_hrs_dfu.uvopt │ │ │ │ │ │ ├── ble_app_hrs_dfu.uvproj │ │ │ │ │ │ ├── ble_app_hrs_serialization.uvopt │ │ │ │ │ │ ├── ble_app_hrs_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_hrs_serialization.uvproj │ │ │ │ │ │ └── ble_app_hrs_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_hrs.Makefile │ │ │ │ │ │ ├── ble_app_hrs_spi.Makefile │ │ │ │ │ │ ├── ble_app_hrs_uart.Makefile │ │ │ │ │ │ └── ble_app_hrs_uart_hci.Makefile │ │ │ │ │ ├── iar │ │ │ │ │ │ ├── ble_app_hrs.ewp │ │ │ │ │ │ ├── ble_app_hrs.eww │ │ │ │ │ │ └── ble_app_hrs.icf │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_hts │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_hts.uvopt │ │ │ │ │ │ ├── ble_app_hts.uvoptx │ │ │ │ │ │ ├── ble_app_hts.uvproj │ │ │ │ │ │ ├── ble_app_hts.uvprojx │ │ │ │ │ │ ├── ble_app_hts_serialization.uvopt │ │ │ │ │ │ ├── ble_app_hts_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_hts_serialization.uvproj │ │ │ │ │ │ └── ble_app_hts_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_hts.Makefile │ │ │ │ │ │ ├── ble_app_hts_spi.Makefile │ │ │ │ │ │ ├── ble_app_hts_uart.Makefile │ │ │ │ │ │ └── ble_app_hts_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_proximity │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_proximity.uvopt │ │ │ │ │ │ ├── ble_app_proximity.uvoptx │ │ │ │ │ │ ├── ble_app_proximity.uvproj │ │ │ │ │ │ ├── ble_app_proximity.uvprojx │ │ │ │ │ │ ├── ble_app_proximity_serialization.uvopt │ │ │ │ │ │ ├── ble_app_proximity_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_proximity_serialization.uvproj │ │ │ │ │ │ └── ble_app_proximity_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── findMeMasterServer.bin │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_proximity.Makefile │ │ │ │ │ │ ├── ble_app_proximity_spi.Makefile │ │ │ │ │ │ ├── ble_app_proximity_uart.Makefile │ │ │ │ │ │ └── ble_app_proximity_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_pwr_profiling │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_pwr_profiling.uvopt │ │ │ │ │ │ ├── ble_app_pwr_profiling.uvoptx │ │ │ │ │ │ ├── ble_app_pwr_profiling.uvproj │ │ │ │ │ │ ├── ble_app_pwr_profiling.uvprojx │ │ │ │ │ │ ├── ble_app_pwr_profiling_serialization.uvopt │ │ │ │ │ │ ├── ble_app_pwr_profiling_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_pwr_profiling_serialization.uvproj │ │ │ │ │ │ └── ble_app_pwr_profiling_serialization.uvprojx │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_pwr_profiling.Makefile │ │ │ │ │ │ ├── ble_app_pwr_profiling_serialization_spi.makefile │ │ │ │ │ │ ├── ble_app_pwr_profiling_serialization_uart.makefile │ │ │ │ │ │ └── ble_app_pwr_profiling_serialization_uart_hci.makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_rscs │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_rscs.uvopt │ │ │ │ │ │ ├── ble_app_rscs.uvoptx │ │ │ │ │ │ ├── ble_app_rscs.uvproj │ │ │ │ │ │ ├── ble_app_rscs.uvprojx │ │ │ │ │ │ ├── ble_app_rscs_serialization.uvopt │ │ │ │ │ │ ├── ble_app_rscs_serialization.uvoptx │ │ │ │ │ │ ├── ble_app_rscs_serialization.uvproj │ │ │ │ │ │ └── ble_app_rscs_serialization.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_app_rscs.Makefile │ │ │ │ │ │ ├── ble_app_rscs_spi.Makefile │ │ │ │ │ │ ├── ble_app_rscs_uart.Makefile │ │ │ │ │ │ └── ble_app_rscs_uart_hci.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_app_template │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_template.uvopt │ │ │ │ │ │ ├── ble_app_template.uvoptx │ │ │ │ │ │ ├── ble_app_template.uvproj │ │ │ │ │ │ └── ble_app_template.uvprojx │ │ │ │ │ ├── gcc │ │ │ │ │ │ └── ble_app_template.Makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ ├── ble_connectivity │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── RTE │ │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ │ ├── nRF51822_xxAA │ │ │ │ │ │ │ │ └── arm_startup_nrf51.s │ │ │ │ │ │ │ │ └── nRF51822_xxAB │ │ │ │ │ │ │ │ └── arm_startup_nrf51.s │ │ │ │ │ │ ├── ble_connectivity.uvopt │ │ │ │ │ │ ├── ble_connectivity.uvoptx │ │ │ │ │ │ ├── ble_connectivity.uvproj │ │ │ │ │ │ └── ble_connectivity.uvprojx │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── ble_connectivity_serialization_spi.makefile │ │ │ │ │ │ ├── ble_connectivity_serialization_uart.makefile │ │ │ │ │ │ └── ble_connectivity_serialization_uart_hci.makefile │ │ │ │ │ └── main.c │ │ │ │ └── ble_dtm │ │ │ │ │ ├── arm │ │ │ │ │ ├── _build_serialization │ │ │ │ │ │ ├── input.lnt │ │ │ │ │ │ └── output.lnt │ │ │ │ │ ├── ble_dtm_serialization.uvopt │ │ │ │ │ ├── ble_dtm_serialization.uvoptx │ │ │ │ │ ├── ble_dtm_serialization.uvproj │ │ │ │ │ └── ble_dtm_serialization.uvprojx │ │ │ │ │ ├── gcc │ │ │ │ │ ├── ble_dtm_serialization_spi.makefile │ │ │ │ │ ├── ble_dtm_serialization_uart.makefile │ │ │ │ │ └── ble_dtm_serialization_uart_hci.makefile │ │ │ │ │ └── main.c │ │ │ ├── s120 │ │ │ │ ├── ble_app_hrs_c │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_hrs_c.uvproj │ │ │ │ │ │ └── ble_app_hrs_c.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── main.c │ │ │ │ │ ├── pstorage_platform.h │ │ │ │ │ └── twi_master_config.h │ │ │ │ ├── ble_app_multilink_central │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── ble_app_multilink_central.uvoptx │ │ │ │ │ │ ├── ble_app_multilink_central.uvproj │ │ │ │ │ │ └── ble_app_multilink_central.uvprojx │ │ │ │ │ ├── client_handling.c │ │ │ │ │ ├── client_handling.h │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ │ └── ble_app_multilink_peripheral │ │ │ │ │ ├── arm │ │ │ │ │ ├── ble_app_multilink_peripheral.uvproj │ │ │ │ │ └── ble_app_multilink_peripheral.uvprojx │ │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ │ ├── gcc │ │ │ │ │ └── makefile │ │ │ │ │ ├── main.c │ │ │ │ │ └── pstorage_platform.h │ │ │ ├── simple_pwm_motor_control_example │ │ │ │ ├── arm │ │ │ │ │ ├── simple_pwm_motor_control_example.uvopt │ │ │ │ │ ├── simple_pwm_motor_control_example.uvoptx │ │ │ │ │ ├── simple_pwm_motor_control_example.uvproj │ │ │ │ │ └── simple_pwm_motor_control_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── spi_master_example │ │ │ │ ├── arm │ │ │ │ │ ├── spi_master_example.uvopt │ │ │ │ │ ├── spi_master_example.uvoptx │ │ │ │ │ ├── spi_master_example.uvproj │ │ │ │ │ └── spi_master_example.uvprojx │ │ │ │ ├── example_config.h │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── spi_master_example_with_spi_slave │ │ │ │ ├── arm │ │ │ │ │ ├── spi_master_example.uvopt │ │ │ │ │ ├── spi_master_example.uvoptx │ │ │ │ │ ├── spi_master_example.uvproj │ │ │ │ │ └── spi_master_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ └── Makefile │ │ │ │ ├── iar │ │ │ │ │ ├── spi_master_example.ewp │ │ │ │ │ └── spi_master_example.eww │ │ │ │ └── main.c │ │ │ ├── spi_slave_example │ │ │ │ ├── arm │ │ │ │ │ ├── spi_slave_example.uvopt │ │ │ │ │ ├── spi_slave_example.uvoptx │ │ │ │ │ ├── spi_slave_example.uvproj │ │ │ │ │ └── spi_slave_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ └── Makefile │ │ │ │ ├── include │ │ │ │ │ └── spi_slave_example.h │ │ │ │ ├── main.c │ │ │ │ └── spi_slave_example.c │ │ │ ├── temperature_example │ │ │ │ ├── arm │ │ │ │ │ ├── temperature.uvopt │ │ │ │ │ ├── temperature.uvoptx │ │ │ │ │ ├── temperature.uvproj │ │ │ │ │ └── temperature.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── template_project │ │ │ │ ├── arm │ │ │ │ │ ├── template_project.uvopt │ │ │ │ │ ├── template_project.uvoptx │ │ │ │ │ ├── template_project.uvproj │ │ │ │ │ └── template_project.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── timer_example │ │ │ │ ├── arm │ │ │ │ │ ├── timer_example.uvopt │ │ │ │ │ ├── timer_example.uvoptx │ │ │ │ │ ├── timer_example.uvproj │ │ │ │ │ └── timer_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ ├── twi_sw_master_example │ │ │ │ ├── arm │ │ │ │ │ ├── twi_sw_master_example.uvopt │ │ │ │ │ ├── twi_sw_master_example.uvoptx │ │ │ │ │ ├── twi_sw_master_example.uvproj │ │ │ │ │ └── twi_sw_master_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── main.c │ │ │ │ └── twi_master_config.h │ │ │ ├── uart_example │ │ │ │ ├── arm │ │ │ │ │ ├── uart_example.uvopt │ │ │ │ │ ├── uart_example.uvoptx │ │ │ │ │ ├── uart_example.uvproj │ │ │ │ │ └── uart_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ └── uicr_config_example │ │ │ │ ├── arm │ │ │ │ ├── uicr_config_example.uvopt │ │ │ │ ├── uicr_config_example.uvoptx │ │ │ │ ├── uicr_config_example.uvproj │ │ │ │ └── uicr_config_example.uvprojx │ │ │ │ ├── main.c │ │ │ │ └── uicr_config.h │ │ ├── pca10000 │ │ │ ├── button_radio_example │ │ │ │ ├── arm │ │ │ │ │ ├── button_radio_example_rx.uvopt │ │ │ │ │ ├── button_radio_example_rx.uvoptx │ │ │ │ │ ├── button_radio_example_rx.uvproj │ │ │ │ │ └── button_radio_example_rx.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── main_rx.c │ │ │ │ ├── radio_config.c │ │ │ │ └── radio_config.h │ │ │ ├── led_radio_example │ │ │ │ ├── arm │ │ │ │ │ ├── led_radio_example_tx.uvopt │ │ │ │ │ ├── led_radio_example_tx.uvoptx │ │ │ │ │ ├── led_radio_example_tx.uvproj │ │ │ │ │ └── led_radio_example_tx.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ ├── main_tx.c │ │ │ │ ├── radio_config.c │ │ │ │ └── radio_config.h │ │ │ ├── uart_example │ │ │ │ ├── arm │ │ │ │ │ ├── uart_example.uvopt │ │ │ │ │ ├── uart_example.uvoptx │ │ │ │ │ ├── uart_example.uvproj │ │ │ │ │ └── uart_example.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── build.bat │ │ │ │ │ └── flash.bat │ │ │ │ └── main.c │ │ │ └── uicr_config_example │ │ │ │ ├── arm │ │ │ │ ├── uicr_config_example.uvopt │ │ │ │ ├── uicr_config_example.uvoptx │ │ │ │ ├── uicr_config_example.uvproj │ │ │ │ └── uicr_config_example.uvprojx │ │ │ │ ├── main.c │ │ │ │ └── uicr_config.h │ │ └── pca10001 │ │ │ ├── blinky_example │ │ │ ├── arm │ │ │ │ ├── blinky.uvopt │ │ │ │ ├── blinky.uvoptx │ │ │ │ ├── blinky.uvproj │ │ │ │ └── blinky.uvprojx │ │ │ ├── gcc │ │ │ │ ├── Makefile │ │ │ │ ├── build.bat │ │ │ │ └── flash.bat │ │ │ └── main.c │ │ │ ├── button_radio_example │ │ │ ├── arm │ │ │ │ ├── button_radio_example_tx.uvopt │ │ │ │ ├── button_radio_example_tx.uvoptx │ │ │ │ ├── button_radio_example_tx.uvproj │ │ │ │ └── button_radio_example_tx.uvprojx │ │ │ ├── gcc │ │ │ │ ├── Makefile │ │ │ │ ├── build.bat │ │ │ │ └── flash.bat │ │ │ ├── main_tx.c │ │ │ ├── radio_config.c │ │ │ └── radio_config.h │ │ │ ├── led_radio_example │ │ │ ├── arm │ │ │ │ ├── led_radio_example_rx.uvopt │ │ │ │ ├── led_radio_example_rx.uvoptx │ │ │ │ ├── led_radio_example_rx.uvproj │ │ │ │ └── led_radio_example_rx.uvprojx │ │ │ ├── gcc │ │ │ │ ├── Makefile │ │ │ │ ├── build.bat │ │ │ │ └── flash.bat │ │ │ ├── main_rx.c │ │ │ ├── radio_config.c │ │ │ └── radio_config.h │ │ │ ├── s110 │ │ │ ├── ble_app_beacon │ │ │ │ ├── arm │ │ │ │ │ ├── _build_serialization │ │ │ │ │ │ ├── input.lnt │ │ │ │ │ │ └── output.lnt │ │ │ │ │ ├── ble_app_beacon.uvopt │ │ │ │ │ ├── ble_app_beacon.uvoptx │ │ │ │ │ ├── ble_app_beacon.uvproj │ │ │ │ │ ├── ble_app_beacon.uvprojx │ │ │ │ │ ├── ble_app_beacon_serialization.uvopt │ │ │ │ │ ├── ble_app_beacon_serialization.uvoptx │ │ │ │ │ ├── ble_app_beacon_serialization.uvproj │ │ │ │ │ └── ble_app_beacon_serialization.uvprojx │ │ │ │ ├── gcc │ │ │ │ │ ├── ble_app_beacon.Makefile │ │ │ │ │ ├── ble_app_beacon_spi.Makefile │ │ │ │ │ ├── ble_app_beacon_uart.Makefile │ │ │ │ │ └── ble_app_beacon_uart_hci.Makefile │ │ │ │ ├── main.c │ │ │ │ └── pstorage_platform.h │ │ │ ├── ble_app_hrs │ │ │ │ ├── arm │ │ │ │ │ ├── ble_app_hrs.uvopt │ │ │ │ │ ├── ble_app_hrs.uvoptx │ │ │ │ │ ├── ble_app_hrs.uvproj │ │ │ │ │ ├── ble_app_hrs.uvprojx │ │ │ │ │ ├── ble_app_hrs_serialization.uvopt │ │ │ │ │ ├── ble_app_hrs_serialization.uvoptx │ │ │ │ │ ├── ble_app_hrs_serialization.uvproj │ │ │ │ │ └── ble_app_hrs_serialization.uvprojx │ │ │ │ ├── battery.c │ │ │ │ ├── battery.h │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ ├── gcc │ │ │ │ │ ├── ble_app_hrs.Makefile │ │ │ │ │ ├── ble_app_hrs_spi.Makefile │ │ │ │ │ ├── ble_app_hrs_uart.Makefile │ │ │ │ │ └── ble_app_hrs_uart_hci.Makefile │ │ │ │ ├── led.c │ │ │ │ ├── led.h │ │ │ │ ├── main.c │ │ │ │ ├── main.h │ │ │ │ └── pstorage_platform.h │ │ │ ├── ble_app_proximity │ │ │ │ ├── README.txt │ │ │ │ ├── arm │ │ │ │ │ ├── ble_app_proximity.uvopt │ │ │ │ │ ├── ble_app_proximity.uvoptx │ │ │ │ │ ├── ble_app_proximity.uvproj │ │ │ │ │ ├── ble_app_proximity.uvprojx │ │ │ │ │ ├── ble_app_proximity_serialization.uvopt │ │ │ │ │ ├── ble_app_proximity_serialization.uvoptx │ │ │ │ │ ├── ble_app_proximity_serialization.uvproj │ │ │ │ │ └── ble_app_proximity_serialization.uvprojx │ │ │ │ ├── device_manager_cnfg.h │ │ │ │ ├── findMeMasterServer.bin │ │ │ │ ├── gcc │ │ │ │ │ ├── ble_app_proximity.Makefile │ │ │ │ │ ├── ble_app_proximity_spi.Makefile │ │ │ │ │ ├── ble_app_proximity_uart.Makefile │ │ │ │ │ └── ble_app_proximity_uart_hci.Makefile │ │ │ │ ├── main.c │ │ │ │ └── pstorage_platform.h │ │ │ └── ble_connectivity │ │ │ │ ├── arm │ │ │ │ ├── RTE │ │ │ │ │ └── Device │ │ │ │ │ │ ├── nRF51822_xxAA │ │ │ │ │ │ └── arm_startup_nrf51.s │ │ │ │ │ │ └── nRF51822_xxAB │ │ │ │ │ │ └── arm_startup_nrf51.s │ │ │ │ ├── ble_connectivity.uvopt │ │ │ │ ├── ble_connectivity.uvoptx │ │ │ │ ├── ble_connectivity.uvproj │ │ │ │ └── ble_connectivity.uvprojx │ │ │ │ ├── gcc │ │ │ │ ├── ble_connectivity_serialization_spi.makefile │ │ │ │ └── ble_connectivity_serialization_uart.makefile │ │ │ │ └── main.c │ │ │ ├── uart_example │ │ │ ├── arm │ │ │ │ ├── uart_example.uvopt │ │ │ │ ├── uart_example.uvoptx │ │ │ │ ├── uart_example.uvproj │ │ │ │ └── uart_example.uvprojx │ │ │ ├── gcc │ │ │ │ ├── Makefile │ │ │ │ ├── build.bat │ │ │ │ └── flash.bat │ │ │ └── main.c │ │ │ └── uicr_config_example │ │ │ ├── arm │ │ │ ├── uicr_config_example.uvopt │ │ │ ├── uicr_config_example.uvoptx │ │ │ ├── uicr_config_example.uvproj │ │ │ └── uicr_config_example.uvprojx │ │ │ ├── main.c │ │ │ └── uicr_config.h │ ├── Include │ │ ├── app_common │ │ │ ├── app_button.h │ │ │ ├── app_error.h │ │ │ ├── app_fifo.h │ │ │ ├── app_gpiote.h │ │ │ ├── app_scheduler.h │ │ │ ├── app_timer.h │ │ │ ├── app_trace.h │ │ │ ├── app_uart.h │ │ │ ├── app_util.h │ │ │ ├── crc16.h │ │ │ ├── hal_transport.h │ │ │ ├── hci_mem_pool.h │ │ │ ├── hci_mem_pool_internal.h │ │ │ ├── hci_slip.h │ │ │ ├── hci_transport.h │ │ │ └── pstorage.h │ │ ├── ble │ │ │ ├── ble_advdata.h │ │ │ ├── ble_advdata_parser.h │ │ │ ├── ble_central_bondmngr.h │ │ │ ├── ble_conn_params.h │ │ │ ├── ble_date_time.h │ │ │ ├── ble_db_discovery.h │ │ │ ├── ble_debug_assert_handler.h │ │ │ ├── ble_dtm.h │ │ │ ├── ble_error_log.h │ │ │ ├── ble_flash.h │ │ │ ├── ble_racp.h │ │ │ ├── ble_radio_notification.h │ │ │ ├── ble_sensorsim.h │ │ │ ├── ble_services │ │ │ │ ├── ble_ans_c.h │ │ │ │ ├── ble_bas.h │ │ │ │ ├── ble_bas_c.h │ │ │ │ ├── ble_bps.h │ │ │ │ ├── ble_cscs.h │ │ │ │ ├── ble_dfu.h │ │ │ │ ├── ble_dis.h │ │ │ │ ├── ble_gls.h │ │ │ │ ├── ble_gls_db.h │ │ │ │ ├── ble_hids.h │ │ │ │ ├── ble_hrs.h │ │ │ │ ├── ble_hrs_c.h │ │ │ │ ├── ble_hts.h │ │ │ │ ├── ble_ias.h │ │ │ │ ├── ble_ias_c.h │ │ │ │ ├── ble_lls.h │ │ │ │ ├── ble_rscs.h │ │ │ │ ├── ble_sc_ctrlpt.h │ │ │ │ ├── ble_sensor_location.h │ │ │ │ ├── ble_srv_common.h │ │ │ │ └── ble_tps.h │ │ │ └── device_manager │ │ │ │ └── device_manager.h │ │ ├── boards.h │ │ ├── boards │ │ │ ├── nrf6310.h │ │ │ ├── pca10000.h │ │ │ ├── pca10001.h │ │ │ └── pca10003.h │ │ ├── bootloader_dfu │ │ │ ├── ble_transport │ │ │ │ └── hci_mem_pool_internal.h │ │ │ ├── bootloader.h │ │ │ ├── bootloader_settings.h │ │ │ ├── bootloader_types.h │ │ │ ├── bootloader_util.h │ │ │ ├── dfu.h │ │ │ ├── dfu_app_handler.h │ │ │ ├── dfu_bank_internal.h │ │ │ ├── dfu_transport.h │ │ │ ├── dfu_types.h │ │ │ └── hci_transport │ │ │ │ ├── hci_mem_pool_internal.h │ │ │ │ └── hci_transport_config.h │ │ ├── common.h │ │ ├── compiler_abstraction.h │ │ ├── console.h │ │ ├── esb │ │ │ ├── nrf_esb.h │ │ │ └── nrf_esb_constants.h │ │ ├── ext_sensors │ │ │ ├── adns2080.h │ │ │ ├── cherry8x16.h │ │ │ ├── ds1624.h │ │ │ ├── mpu6050.h │ │ │ ├── nrf6350.h │ │ │ ├── sdio.h │ │ │ └── synaptics_touchpad.h │ │ ├── gcc │ │ │ ├── core_cm0.h │ │ │ ├── core_cmFunc.h │ │ │ └── core_cmInstr.h │ │ ├── gzll │ │ │ ├── nrf_gzll.h │ │ │ └── nrf_gzll_constants.h │ │ ├── gzp │ │ │ └── nrf_gzp.h │ │ ├── nordic_common.h │ │ ├── nrf.h │ │ ├── nrf51.h │ │ ├── nrf51_bitfields.h │ │ ├── nrf51_deprecated.h │ │ ├── nrf_assert.h │ │ ├── nrf_delay.h │ │ ├── nrf_ecb.h │ │ ├── nrf_gpio.h │ │ ├── nrf_gpiote.h │ │ ├── nrf_nvmc.h │ │ ├── nrf_temp.h │ │ ├── s110 │ │ │ ├── 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 │ │ ├── s120 │ │ │ ├── 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_sdm.h │ │ │ ├── nrf_soc.h │ │ │ ├── nrf_svc.h │ │ │ └── softdevice_assert.h │ │ ├── sd_common │ │ │ ├── ant_stack_handler_types.h │ │ │ ├── app_util_platform.h │ │ │ ├── ble_stack_handler_types.h │ │ │ └── softdevice_handler.h │ │ ├── sdk │ │ │ ├── sdk_common.h │ │ │ ├── sdk_errors.h │ │ │ └── sdk_os.h │ │ ├── sdk_soc │ │ │ ├── app_util_platform.h │ │ │ ├── nrf_error.h │ │ │ └── nrf_soc.h │ │ ├── serialization │ │ │ ├── application │ │ │ │ ├── codecs │ │ │ │ │ ├── common │ │ │ │ │ │ └── ble_dtm_app.h │ │ │ │ │ └── s110 │ │ │ │ │ │ └── serializers │ │ │ │ │ │ ├── ble_app.h │ │ │ │ │ │ ├── ble_evt_app.h │ │ │ │ │ │ ├── ble_gap_app.h │ │ │ │ │ │ ├── ble_gap_evt_app.h │ │ │ │ │ │ ├── ble_gattc_app.h │ │ │ │ │ │ ├── ble_gattc_evt_app.h │ │ │ │ │ │ ├── ble_gatts_app.h │ │ │ │ │ │ ├── ble_gatts_evt_app.h │ │ │ │ │ │ ├── ble_l2cap_app.h │ │ │ │ │ │ ├── ble_l2cap_evt_app.h │ │ │ │ │ │ └── nrf_soc_app.h │ │ │ │ └── transport │ │ │ │ │ ├── app_mailbox.h │ │ │ │ │ ├── ser_app_hal.h │ │ │ │ │ ├── ser_app_power_system_off.h │ │ │ │ │ ├── ser_phy_config_app_nrf51.h │ │ │ │ │ ├── ser_phy_debug_app.h │ │ │ │ │ ├── ser_sd_transport.h │ │ │ │ │ └── spi_5W_master.h │ │ │ ├── common │ │ │ │ ├── ble_serialization.h │ │ │ │ ├── cond_field_serialization.h │ │ │ │ ├── ser_config.h │ │ │ │ ├── struct_ser │ │ │ │ │ └── s110 │ │ │ │ │ │ ├── ble_gap_struct_serialization.h │ │ │ │ │ │ ├── ble_gattc_struct_serialization.h │ │ │ │ │ │ ├── ble_gatts_struct_serialization.h │ │ │ │ │ │ └── ble_struct_serialization.h │ │ │ │ └── transport │ │ │ │ │ ├── dtm_uart_params.h │ │ │ │ │ ├── ser_hal_transport.h │ │ │ │ │ ├── ser_phy.h │ │ │ │ │ ├── ser_phy_debug_comm.h │ │ │ │ │ └── ser_phy_hci.h │ │ │ └── connectivity │ │ │ │ ├── app_scheduler.h │ │ │ │ ├── codecs │ │ │ │ ├── common │ │ │ │ │ └── ble_dtm_conn.h │ │ │ │ └── s110 │ │ │ │ │ ├── middleware │ │ │ │ │ ├── conn_mw.h │ │ │ │ │ ├── conn_mw_ble.h │ │ │ │ │ ├── conn_mw_ble_gap.h │ │ │ │ │ ├── conn_mw_ble_gattc.h │ │ │ │ │ ├── conn_mw_ble_gatts.h │ │ │ │ │ ├── conn_mw_ble_l2cap.h │ │ │ │ │ └── conn_mw_nrf_soc.h │ │ │ │ │ └── serializers │ │ │ │ │ ├── ble_conn.h │ │ │ │ │ ├── ble_evt_conn.h │ │ │ │ │ ├── ble_gap_conn.h │ │ │ │ │ ├── ble_gap_evt_conn.h │ │ │ │ │ ├── ble_gattc_conn.h │ │ │ │ │ ├── ble_gattc_evt_conn.h │ │ │ │ │ ├── ble_gatts_conn.h │ │ │ │ │ ├── ble_gatts_evt_conn.h │ │ │ │ │ ├── ble_l2cap_conn.h │ │ │ │ │ ├── ble_l2cap_evt_conn.h │ │ │ │ │ └── nrf_soc_conn.h │ │ │ │ ├── pstorage_platform.h │ │ │ │ ├── ser_conn_cmd_decoder.h │ │ │ │ ├── ser_conn_dtm_cmd_decoder.h │ │ │ │ ├── ser_conn_event_encoder.h │ │ │ │ ├── ser_conn_handlers.h │ │ │ │ ├── ser_conn_pkt_decoder.h │ │ │ │ └── transport │ │ │ │ ├── dtm_uart.h │ │ │ │ ├── ser_phy_config_conn_nrf51.h │ │ │ │ └── ser_phy_debug_conn.h │ │ ├── simple_uart.h │ │ ├── spi_master.h │ │ ├── spi_slave.h │ │ ├── system_nrf51.h │ │ └── twi_master.h │ ├── Lib │ │ ├── .gitignore │ │ ├── esb │ │ │ ├── arm │ │ │ │ ├── esb_arm.lib │ │ │ │ └── esb_sd_resources_arm.lib │ │ │ └── gcc │ │ │ │ ├── esb_gcc.a │ │ │ │ └── esb_sd_resources_gcc.a │ │ └── gzll │ │ │ ├── arm │ │ │ ├── gzll_arm.lib │ │ │ └── gzll_sd_resources_arm.lib │ │ │ └── gcc │ │ │ ├── gzll_gcc.a │ │ │ └── gzll_sd_resources_gcc.a │ ├── SVD │ │ ├── .gitignore │ │ └── nrf51.xml │ └── Source │ │ ├── app_common │ │ ├── app_button.c │ │ ├── app_fifo.c │ │ ├── app_gpiote.c │ │ ├── app_scheduler.c │ │ ├── app_timer.c │ │ ├── app_trace.c │ │ ├── app_uart.c │ │ ├── app_uart_fifo.c │ │ ├── crc16.c │ │ ├── hci_mem_pool.c │ │ ├── hci_slip.c │ │ ├── hci_transport.c │ │ └── pstorage.c │ │ ├── ble │ │ ├── ble_advdata.c │ │ ├── ble_advdata_parser.c │ │ ├── ble_conn_params.c │ │ ├── ble_db_discovery.c │ │ ├── ble_debug_assert_handler.c │ │ ├── ble_dtm.c │ │ ├── ble_error_log.c │ │ ├── ble_flash.c │ │ ├── ble_racp.c │ │ ├── ble_radio_notification.c │ │ ├── ble_sensorsim.c │ │ ├── ble_services │ │ │ ├── ble_ans_c.c │ │ │ ├── ble_bas.c │ │ │ ├── ble_bas_c.c │ │ │ ├── ble_bps.c │ │ │ ├── ble_cscs.c │ │ │ ├── ble_dfu.c │ │ │ ├── ble_dis.c │ │ │ ├── ble_gls.c │ │ │ ├── ble_gls_db.c │ │ │ ├── ble_hids.c │ │ │ ├── ble_hrs.c │ │ │ ├── ble_hrs_c.c │ │ │ ├── ble_hts.c │ │ │ ├── ble_ias.c │ │ │ ├── ble_ias_c.c │ │ │ ├── ble_lls.c │ │ │ ├── ble_rscs.c │ │ │ ├── ble_sc_ctrlpt.c │ │ │ ├── ble_srv_common.c │ │ │ └── ble_tps.c │ │ └── device_manager │ │ │ ├── device_manager_central.c │ │ │ └── device_manager_peripheral.c │ │ ├── bootloader_dfu │ │ ├── bootloader.c │ │ ├── bootloader_settings_arm.c │ │ ├── bootloader_util_arm.c │ │ ├── bootloader_util_gcc.c │ │ ├── dfu_app_handler.c │ │ ├── dfu_dual_bank.c │ │ ├── dfu_single_bank.c │ │ ├── dfu_transport_ble.c │ │ └── dfu_transport_serial.c │ │ ├── console │ │ └── console.c │ │ ├── ext_sensors │ │ ├── adns2080 │ │ │ └── adns2080.c │ │ ├── cherry8x16 │ │ │ └── cherry8x16.c │ │ ├── ds1624 │ │ │ └── ds1624.c │ │ ├── mpu6050 │ │ │ └── mpu6050.c │ │ ├── nrf6350 │ │ │ └── nrf6350.c │ │ ├── sdio │ │ │ └── sdio.c │ │ └── synaptics_touchpad │ │ │ └── synaptics_touchpad.c │ │ ├── gzp │ │ ├── nrf_gzp.c │ │ ├── nrf_gzp_device.c │ │ ├── nrf_gzp_host.c │ │ └── nrf_gzp_host_nrf51.c │ │ ├── keil_arm_uv4.lnt │ │ ├── nrf_assert │ │ └── nrf_assert.c │ │ ├── nrf_delay │ │ └── nrf_delay.c │ │ ├── nrf_ecb │ │ └── nrf_ecb.c │ │ ├── nrf_nvmc │ │ └── nrf_nvmc.c │ │ ├── sd_common │ │ └── softdevice_handler.c │ │ ├── sdk_soc │ │ └── nrf_soc.c │ │ ├── serialization │ │ ├── application │ │ │ ├── codecs │ │ │ │ ├── common │ │ │ │ │ ├── ble_dtm_app.c │ │ │ │ │ └── ble_dtm_init.c │ │ │ │ └── s110 │ │ │ │ │ ├── middleware │ │ │ │ │ ├── app_mw_ble.c │ │ │ │ │ ├── app_mw_ble_gap.c │ │ │ │ │ ├── app_mw_ble_gattc.c │ │ │ │ │ ├── app_mw_ble_gatts.c │ │ │ │ │ ├── app_mw_ble_l2cap.c │ │ │ │ │ └── app_mw_nrf_soc.c │ │ │ │ │ └── serializers │ │ │ │ │ ├── ble_enable.c │ │ │ │ │ ├── ble_event.c │ │ │ │ │ ├── ble_evt_tx_complete.c │ │ │ │ │ ├── ble_gap_address_get.c │ │ │ │ │ ├── ble_gap_address_set.c │ │ │ │ │ ├── ble_gap_adv_data_set.c │ │ │ │ │ ├── ble_gap_adv_start.c │ │ │ │ │ ├── ble_gap_adv_stop.c │ │ │ │ │ ├── ble_gap_appearance_get.c │ │ │ │ │ ├── ble_gap_appearance_set.c │ │ │ │ │ ├── ble_gap_auth_key_reply.c │ │ │ │ │ ├── ble_gap_authenticate.c │ │ │ │ │ ├── ble_gap_conn_param_update.c │ │ │ │ │ ├── ble_gap_conn_sec_get.c │ │ │ │ │ ├── ble_gap_device_name_get.c │ │ │ │ │ ├── ble_gap_device_name_set.c │ │ │ │ │ ├── ble_gap_disconnect.c │ │ │ │ │ ├── ble_gap_evt_auth_key_request.c │ │ │ │ │ ├── ble_gap_evt_auth_status.c │ │ │ │ │ ├── ble_gap_evt_conn_param_update.c │ │ │ │ │ ├── ble_gap_evt_conn_sec_update.c │ │ │ │ │ ├── ble_gap_evt_connected.c │ │ │ │ │ ├── ble_gap_evt_disconnected.c │ │ │ │ │ ├── ble_gap_evt_passkey_display.c │ │ │ │ │ ├── ble_gap_evt_rssi_changed.c │ │ │ │ │ ├── ble_gap_evt_sec_info_request.c │ │ │ │ │ ├── ble_gap_evt_sec_params_request.c │ │ │ │ │ ├── ble_gap_evt_timeout.c │ │ │ │ │ ├── ble_gap_ppcp_get.c │ │ │ │ │ ├── ble_gap_ppcp_set.c │ │ │ │ │ ├── ble_gap_rssi_start.c │ │ │ │ │ ├── ble_gap_rssi_stop.c │ │ │ │ │ ├── ble_gap_sec_info_reply.c │ │ │ │ │ ├── ble_gap_sec_params_reply.c │ │ │ │ │ ├── ble_gap_tx_power_set.c │ │ │ │ │ ├── ble_gattc_char_value_by_uuid_read.c │ │ │ │ │ ├── ble_gattc_char_values_read.c │ │ │ │ │ ├── ble_gattc_characteristics_discover.c │ │ │ │ │ ├── ble_gattc_descriptors_discover.c │ │ │ │ │ ├── ble_gattc_evt_char_disc_rsp.c │ │ │ │ │ ├── ble_gattc_evt_char_val_by_uuid_read_rsp.c │ │ │ │ │ ├── ble_gattc_evt_char_vals_read_rsp.c │ │ │ │ │ ├── ble_gattc_evt_desc_disc_rsp.c │ │ │ │ │ ├── ble_gattc_evt_hvx.c │ │ │ │ │ ├── ble_gattc_evt_prim_srvc_disc_rsp.c │ │ │ │ │ ├── ble_gattc_evt_read_rsp.c │ │ │ │ │ ├── ble_gattc_evt_rel_disc_rsp.c │ │ │ │ │ ├── ble_gattc_evt_timeout.c │ │ │ │ │ ├── ble_gattc_evt_write_rsp.c │ │ │ │ │ ├── ble_gattc_hv_confirm.c │ │ │ │ │ ├── ble_gattc_primary_services_discover.c │ │ │ │ │ ├── ble_gattc_read.c │ │ │ │ │ ├── ble_gattc_relationships_discover.c │ │ │ │ │ ├── ble_gattc_write.c │ │ │ │ │ ├── ble_gatts_characteristic_add.c │ │ │ │ │ ├── ble_gatts_descriptor_add.c │ │ │ │ │ ├── ble_gatts_evt_hvc.c │ │ │ │ │ ├── ble_gatts_evt_rw_authorize_request.c │ │ │ │ │ ├── ble_gatts_evt_sc_confirm.c │ │ │ │ │ ├── ble_gatts_evt_sys_attr_missing.c │ │ │ │ │ ├── ble_gatts_evt_timeout.c │ │ │ │ │ ├── ble_gatts_evt_write.c │ │ │ │ │ ├── ble_gatts_hvx.c │ │ │ │ │ ├── ble_gatts_include_add.c │ │ │ │ │ ├── ble_gatts_rw_authorize_reply.c │ │ │ │ │ ├── ble_gatts_service_add.c │ │ │ │ │ ├── ble_gatts_service_changed.c │ │ │ │ │ ├── ble_gatts_sys_attr_get.c │ │ │ │ │ ├── ble_gatts_sys_attr_set.c │ │ │ │ │ ├── ble_gatts_value_get.c │ │ │ │ │ ├── ble_gatts_value_set.c │ │ │ │ │ ├── ble_l2cap_cid_register.c │ │ │ │ │ ├── ble_l2cap_cid_unregister.c │ │ │ │ │ ├── ble_l2cap_evt_rx.c │ │ │ │ │ ├── ble_l2cap_tx.c │ │ │ │ │ ├── ble_opt_get.c │ │ │ │ │ ├── ble_opt_set.c │ │ │ │ │ ├── ble_tx_buffer_count_get.c │ │ │ │ │ ├── ble_uuid_decode.c │ │ │ │ │ ├── ble_uuid_encode.c │ │ │ │ │ ├── ble_uuid_vs_add.c │ │ │ │ │ ├── ble_version_get.c │ │ │ │ │ ├── power_system_off.c │ │ │ │ │ └── temp_get.c │ │ │ ├── hal │ │ │ │ ├── app_gpiote_fast_detect.c │ │ │ │ ├── app_util_platform.c │ │ │ │ ├── arm_startup_nrf51.s │ │ │ │ ├── pstorage.c │ │ │ │ ├── ser_app_hal_nrf51.c │ │ │ │ ├── ser_app_power_system_off.c │ │ │ │ ├── ser_config_5W_app.h │ │ │ │ ├── ser_phy_nrf51_spi_5W_master.c │ │ │ │ ├── ser_phy_nrf51_spi_master.c │ │ │ │ ├── ser_phy_nrf51_uart_stm_app.c │ │ │ │ └── spi_5W_master.c │ │ │ └── transport │ │ │ │ ├── app_mailbox.c │ │ │ │ ├── ser_sd_transport.c │ │ │ │ └── ser_softdevice_handler.c │ │ ├── common │ │ │ ├── ble_serialization.c │ │ │ ├── cond_field_serialization.c │ │ │ ├── struct_ser │ │ │ │ └── s110 │ │ │ │ │ ├── ble_gap_struct_serialization.c │ │ │ │ │ ├── ble_gattc_struct_serialization.c │ │ │ │ │ ├── ble_gatts_struct_serialization.c │ │ │ │ │ └── ble_struct_serialization.c │ │ │ └── transport │ │ │ │ ├── debug │ │ │ │ ├── debug_hci_config_nrf6310.h │ │ │ │ └── debug_hci_nrf6310.c │ │ │ │ ├── ser_hal_transport.c │ │ │ │ ├── ser_phy.c │ │ │ │ ├── ser_phy_hci.c │ │ │ │ ├── ser_phy_hci_slip.c │ │ │ │ ├── ser_phy_nohci.c │ │ │ │ └── ser_phy_nrf51_uart.c │ │ └── connectivity │ │ │ ├── app_scheduler.c │ │ │ ├── codecs │ │ │ ├── common │ │ │ │ ├── ble_dtm_init.c │ │ │ │ └── conn_mw.c │ │ │ └── s110 │ │ │ │ ├── middleware │ │ │ │ ├── conn_mw_ble.c │ │ │ │ ├── conn_mw_ble_gap.c │ │ │ │ ├── conn_mw_ble_gattc.c │ │ │ │ ├── conn_mw_ble_gatts.c │ │ │ │ ├── conn_mw_ble_l2cap.c │ │ │ │ ├── conn_mw_items.c │ │ │ │ └── conn_mw_nrf_soc.c │ │ │ │ └── serializers │ │ │ │ ├── ble_enable.c │ │ │ │ ├── ble_event.c │ │ │ │ ├── ble_evt_tx_complete.c │ │ │ │ ├── ble_gap_address_get.c │ │ │ │ ├── ble_gap_address_set.c │ │ │ │ ├── ble_gap_adv_data_set.c │ │ │ │ ├── ble_gap_adv_start.c │ │ │ │ ├── ble_gap_adv_stop.c │ │ │ │ ├── ble_gap_appearance_get.c │ │ │ │ ├── ble_gap_appearance_set.c │ │ │ │ ├── ble_gap_auth_key_reply.c │ │ │ │ ├── ble_gap_authenticate.c │ │ │ │ ├── ble_gap_conn_param_update.c │ │ │ │ ├── ble_gap_conn_sec_get.c │ │ │ │ ├── ble_gap_device_name_get.c │ │ │ │ ├── ble_gap_device_name_set.c │ │ │ │ ├── ble_gap_disconnect.c │ │ │ │ ├── ble_gap_evt_auth_key_request.c │ │ │ │ ├── ble_gap_evt_auth_status.c │ │ │ │ ├── ble_gap_evt_conn_param_update.c │ │ │ │ ├── ble_gap_evt_conn_sec_update.c │ │ │ │ ├── ble_gap_evt_connected.c │ │ │ │ ├── ble_gap_evt_disconnected.c │ │ │ │ ├── ble_gap_evt_passkey_display.c │ │ │ │ ├── ble_gap_evt_rssi_changed.c │ │ │ │ ├── ble_gap_evt_sec_info_request.c │ │ │ │ ├── ble_gap_evt_sec_params_request.c │ │ │ │ ├── ble_gap_evt_timeout.c │ │ │ │ ├── ble_gap_ppcp_get.c │ │ │ │ ├── ble_gap_ppcp_set.c │ │ │ │ ├── ble_gap_rssi_start.c │ │ │ │ ├── ble_gap_rssi_stop.c │ │ │ │ ├── ble_gap_sec_info_reply.c │ │ │ │ ├── ble_gap_sec_params_reply.c │ │ │ │ ├── ble_gap_tx_power_set.c │ │ │ │ ├── ble_gattc_char_value_by_uuid_read.c │ │ │ │ ├── ble_gattc_char_values_read.c │ │ │ │ ├── ble_gattc_characteristics_discover.c │ │ │ │ ├── ble_gattc_descriptors_discover.c │ │ │ │ ├── ble_gattc_evt_char_disc_rsp.c │ │ │ │ ├── ble_gattc_evt_char_val_by_uuid_read_rsp.c │ │ │ │ ├── ble_gattc_evt_char_vals_read_rsp.c │ │ │ │ ├── ble_gattc_evt_desc_disc_rsp.c │ │ │ │ ├── ble_gattc_evt_hvx.c │ │ │ │ ├── ble_gattc_evt_prim_srvc_disc_rsp.c │ │ │ │ ├── ble_gattc_evt_read_rsp.c │ │ │ │ ├── ble_gattc_evt_rel_disc_rsp.c │ │ │ │ ├── ble_gattc_evt_timeout.c │ │ │ │ ├── ble_gattc_evt_write_rsp.c │ │ │ │ ├── ble_gattc_hv_confirm.c │ │ │ │ ├── ble_gattc_primary_services_discover.c │ │ │ │ ├── ble_gattc_read.c │ │ │ │ ├── ble_gattc_relationships_discover.c │ │ │ │ ├── ble_gattc_write.c │ │ │ │ ├── ble_gatts_characteristic_add.c │ │ │ │ ├── ble_gatts_descriptor_add.c │ │ │ │ ├── ble_gatts_evt_hvc.c │ │ │ │ ├── ble_gatts_evt_rw_authorize_request.c │ │ │ │ ├── ble_gatts_evt_sc_confirm.c │ │ │ │ ├── ble_gatts_evt_sys_attr_missing.c │ │ │ │ ├── ble_gatts_evt_timeout.c │ │ │ │ ├── ble_gatts_evt_write.c │ │ │ │ ├── ble_gatts_hvx.c │ │ │ │ ├── ble_gatts_include_add.c │ │ │ │ ├── ble_gatts_rw_authorize_reply.c │ │ │ │ ├── ble_gatts_service_add.c │ │ │ │ ├── ble_gatts_service_changed.c │ │ │ │ ├── ble_gatts_sys_attr_get.c │ │ │ │ ├── ble_gatts_sys_attr_set.c │ │ │ │ ├── ble_gatts_value_get.c │ │ │ │ ├── ble_gatts_value_set.c │ │ │ │ ├── ble_l2cap_cid_register.c │ │ │ │ ├── ble_l2cap_cid_unregister.c │ │ │ │ ├── ble_l2cap_evt_rx.c │ │ │ │ ├── ble_l2cap_tx.c │ │ │ │ ├── ble_opt_get.c │ │ │ │ ├── ble_opt_id_pre_decoder.c │ │ │ │ ├── ble_opt_set.c │ │ │ │ ├── ble_tx_buffer_count_get.c │ │ │ │ ├── ble_uuid_decode.c │ │ │ │ ├── ble_uuid_encode.c │ │ │ │ ├── ble_uuid_vs_add.c │ │ │ │ ├── ble_version_get.c │ │ │ │ ├── power_system_off.c │ │ │ │ └── temp_get.c │ │ │ ├── hal │ │ │ ├── dtm_uart.c │ │ │ ├── ser_phy_nrf51_spi_5W_slave.c │ │ │ ├── ser_phy_nrf51_spi_slave.c │ │ │ └── ser_phy_nrf51_uart_stm_conn.c │ │ │ ├── ser_conn_cmd_decoder.c │ │ │ ├── ser_conn_dtm_cmd_decoder.c │ │ │ ├── ser_conn_error_handling.c │ │ │ ├── ser_conn_event_encoder.c │ │ │ ├── ser_conn_handlers.c │ │ │ ├── ser_conn_pkt_decoder.c │ │ │ └── startup │ │ │ └── arm │ │ │ └── arm_startup_nrf51.s │ │ ├── simple_uart │ │ └── simple_uart.c │ │ ├── spi_master │ │ └── spi_master.c │ │ ├── spi_slave │ │ └── spi_slave.c │ │ ├── templates │ │ ├── arm │ │ │ ├── arm_startup_nrf51.s │ │ │ └── uicr_config.h │ │ ├── gcc │ │ │ ├── Makefile.common │ │ │ ├── Makefile.posix │ │ │ ├── Makefile.windows │ │ │ ├── gcc_nrf51_blank_xxaa.ld │ │ │ ├── gcc_nrf51_blank_xxab.ld │ │ │ ├── gcc_nrf51_common.ld │ │ │ ├── gcc_nrf51_s110_xxaa.ld │ │ │ ├── gcc_nrf51_s110_xxab.ld │ │ │ ├── gcc_nrf51_s120_xxaa.ld │ │ │ ├── gcc_nrf51_s120_xxab.ld │ │ │ ├── gcc_nrf51_s210_xxaa.ld │ │ │ ├── gcc_nrf51_s210_xxab.ld │ │ │ ├── gcc_nrf51_s310_xxaa.ld │ │ │ └── gcc_startup_nrf51.s │ │ ├── iar │ │ │ ├── .gitignore │ │ │ └── iar_startup_nrf51.s │ │ └── system_nrf51.c │ │ └── twi_master │ │ ├── twi_hw_master.c │ │ └── twi_sw_master.c └── s110_nrf51822_7.1.0_softdevice.hex ├── pstorage_platform.h ├── readme.md ├── retarget.c ├── retarget.h ├── wiegand.c └── wiegand.h /.gitignore: -------------------------------------------------------------------------------- 1 | gcc/_build/* 2 | *.jlink 3 | -------------------------------------------------------------------------------- /ble_wiegand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/ble_wiegand.c -------------------------------------------------------------------------------- /ble_wiegand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/ble_wiegand.h -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/client/README.md -------------------------------------------------------------------------------- /client/blekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/client/blekey.py -------------------------------------------------------------------------------- /client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/client/requirements.txt -------------------------------------------------------------------------------- /device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/device_manager_cnfg.h -------------------------------------------------------------------------------- /docs/MDBT40Z0120150209.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/docs/MDBT40Z0120150209.jpg -------------------------------------------------------------------------------- /firmware/app_valid_setting_apply.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/firmware/app_valid_setting_apply.hex -------------------------------------------------------------------------------- /firmware/bootloader.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/firmware/bootloader.hex -------------------------------------------------------------------------------- /firmware/fw_update.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/firmware/fw_update.mp4 -------------------------------------------------------------------------------- /firmware/mergehex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/firmware/mergehex.exe -------------------------------------------------------------------------------- /firmware/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/firmware/readme.md -------------------------------------------------------------------------------- /firmware/super.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/firmware/super.hex -------------------------------------------------------------------------------- /gcc/Makefile: -------------------------------------------------------------------------------- 1 | blekey.Makefile -------------------------------------------------------------------------------- /gcc/Makefile.posix: -------------------------------------------------------------------------------- 1 | ../nordic/nrf51822/Source/templates/gcc/Makefile.posix -------------------------------------------------------------------------------- /gcc/blekey.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/gcc/blekey.Makefile -------------------------------------------------------------------------------- /gcc/flash.jlink: -------------------------------------------------------------------------------- 1 | loadbin _build/blekey_s110_xxaa.bin 0x16000 2 | r 3 | g 4 | exit 5 | -------------------------------------------------------------------------------- /hardware/WIEG.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/WIEG.lib -------------------------------------------------------------------------------- /hardware/_saved_weigand.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/_saved_weigand.sch -------------------------------------------------------------------------------- /hardware/agapenor/agapenor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/agapenor.zip -------------------------------------------------------------------------------- /hardware/agapenor/weigand-B_Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand-B_Cu.gbl -------------------------------------------------------------------------------- /hardware/agapenor/weigand-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand-B_Mask.gbs -------------------------------------------------------------------------------- /hardware/agapenor/weigand-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand-B_SilkS.gbo -------------------------------------------------------------------------------- /hardware/agapenor/weigand-Edge_Cuts.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand-Edge_Cuts.gbr -------------------------------------------------------------------------------- /hardware/agapenor/weigand-F_Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand-F_Cu.gtl -------------------------------------------------------------------------------- /hardware/agapenor/weigand-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand-F_Mask.gts -------------------------------------------------------------------------------- /hardware/agapenor/weigand-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand-F_SilkS.gto -------------------------------------------------------------------------------- /hardware/agapenor/weigand.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/agapenor/weigand.drl -------------------------------------------------------------------------------- /hardware/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/fp-lib-table -------------------------------------------------------------------------------- /hardware/gerbs/gerbs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/gerbs.zip -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.GBL -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.GBO -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.GBS -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.GML -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.GTL -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.GTO -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.GTS -------------------------------------------------------------------------------- /hardware/gerbs/wiegand.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/gerbs/wiegand.TXT -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/10PIN_SWD.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/10PIN_SWD.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/BU1632SM-JJ-GTR.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/BU1632SM-JJ-GTR.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/CR2032.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/CR2032.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/FC-135.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/FC-135.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/GND_VIA.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/GND_VIA.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/IDC3POS.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/IDC3POS.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/MDBT40.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/MDBT40.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/Pin_Header_Straight_1x15_cust.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/Pin_Header_Straight_1x15_cust.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/S8211R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/S8211R.kicad_mod -------------------------------------------------------------------------------- /hardware/new_wieg.pretty/SOT-23-FET.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/new_wieg.pretty/SOT-23-FET.kicad_mod -------------------------------------------------------------------------------- /hardware/weigand-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand-cache.lib -------------------------------------------------------------------------------- /hardware/weigand-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand-rescue.lib -------------------------------------------------------------------------------- /hardware/weigand.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.bak -------------------------------------------------------------------------------- /hardware/weigand.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.cmp -------------------------------------------------------------------------------- /hardware/weigand.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.drl -------------------------------------------------------------------------------- /hardware/weigand.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.kicad_pcb -------------------------------------------------------------------------------- /hardware/weigand.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.kicad_pcb-bak -------------------------------------------------------------------------------- /hardware/weigand.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.net -------------------------------------------------------------------------------- /hardware/weigand.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.pro -------------------------------------------------------------------------------- /hardware/weigand.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand.sch -------------------------------------------------------------------------------- /hardware/weigand_cr2032.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/weigand_cr2032.kicad_pcb -------------------------------------------------------------------------------- /hardware/wieg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/hardware/wieg.mod -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/main.c -------------------------------------------------------------------------------- /nordic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/.DS_Store -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/arm/blinky.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/iar/blinky.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/iar/blinky.ewp -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/iar/blinky.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/iar/blinky.eww -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/blinky_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/blinky_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/arm/debouncer_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/lib_debounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/lib_debounce.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/lib_debounce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/lib_debounce.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/debouncer_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/debouncer_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/device_firmware_updates/ble_dfu_send_hex/dfu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/device_firmware_updates/bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/device_firmware_updates/bootloader/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/direct_test_mode/arm/direct_test_mode.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/direct_test_mode/gcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/direct_test_mode/gcc/makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/direct_test_mode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/direct_test_mode/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_prx_ack_payload.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/arm/esb_ptx_ack_payload.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/gcc_rx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/gcc_rx/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/gcc_tx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/gcc_tx/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/main_esb_prx_ack_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/main_esb_prx_ack_payload.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/main_esb_ptx_ack_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/esb/esb_ptx_prx/main_esb_ptx_ack_payload.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/sdio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ext_sensors/adns2080_example/sdio_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/cherry8x16_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ext_sensors/cherry8x16_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/cherry8x16_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/cherry8x16_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ext_sensors/cherry8x16_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ext_sensors/cherry8x16_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/flashwrite_example/arm/flashwrite_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/flashwrite_example/arm/flashwrite_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/flashwrite_example/arm/flashwrite_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/flashwrite_example/arm/flashwrite_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/flashwrite_example/arm/flashwrite_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/flashwrite_example/arm/flashwrite_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/flashwrite_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/flashwrite_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/flashwrite_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/flashwrite_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/flashwrite_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/flashwrite_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gpiote_example/arm/gpiote_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gpiote_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gpiote_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gpiote_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzll_ack_payload/gcc_device/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzll_ack_payload/gcc_device/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzll_ack_payload/gcc_host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzll_ack_payload/gcc_host/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzll_ack_payload/main_host_ack_payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzll_ack_payload/main_host_ack_payload.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/keyboard_emulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/keyboard_emulator.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/keyboard_emulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/keyboard_emulator.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/nrf_gzllde_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/nrf_gzllde_params.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/nrf_gzp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzp_desktop_emulator/nrf_gzp_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/gzll/gzp_dynamic_pairing/nrf_gzp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/gzll/gzp_dynamic_pairing/nrf_gzp_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/nRF6350_radio_configuration_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/nRF6350_radio_configuration_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/nRF6350_radio_configuration_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/nRF6350_radio_configuration_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pin_change_int_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pin_change_int_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pin_change_int_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pin_change_int_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pin_change_int_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pin_change_int_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ppi_example/arm/ppi_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ppi_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ppi_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ppi_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_analyzer/arm/pwm_analyzer.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_analyzer/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_analyzer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_analyzer/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_example/arm/pwm_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/pwm_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/pwm_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_rx_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/arm/radio_tx_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/gcc_rx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/gcc_rx/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/gcc_rx/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/gcc_rx/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/gcc_tx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/gcc_tx/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/gcc_tx/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/gcc_tx/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/main_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/main_rx.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/main_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/main_tx.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/radio_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/radio_config.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_example/radio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_example/radio_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_test_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_test_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/radio_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_test_example/radio_test.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/radio_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_test_example/radio_test.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_test_example/uart.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/radio_test_example/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/radio_test_example/uart.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ram_retention_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ram_retention_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ram_retention_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ram_retention_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/ram_retention_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/ram_retention_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rng_example/arm/rng_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rng_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rng_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rng_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rtc_example/arm/rtc_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rtc_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/rtc_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/rtc_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_alert_notification/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_alert_notification/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_alert_notification/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_alert_notification/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/arm/ble_app_beacon.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/arm/ble_app_beacon.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/arm/ble_app_beacon.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/arm/ble_app_beacon.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/arm/ble_app_beacon.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/arm/ble_app_beacon.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_beacon/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/arm/ble_app_bps.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/gcc/ble_app_bps.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/gcc/ble_app_bps.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/gcc/ble_app_bps_spi.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/gcc/ble_app_bps_spi.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_bps/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/arm/ble_app_cscs.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/gcc/ble_app_cscs.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/gcc/ble_app_cscs.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_cscs/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/arm/ble_app_gls.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/gcc/ble_app_gls.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/gcc/ble_app_gls.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/gcc/ble_app_gls_spi.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/gcc/ble_app_gls_spi.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/twi_master_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gls/twi_master_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/arm/ble_app_gzll.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_common.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_device.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_device.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_hr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_hr.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_hr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_hr.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_ui.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_app_gzll_ui.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_gzll_app_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/ble_gzll_app_timer.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/gcc/ble_app_gzll.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/gcc/ble_app_gzll.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_gzll/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_keyboard/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_keyboard/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_keyboard/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_keyboard/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hids_mouse/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/.cproject -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/.project -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs_dfu.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs_dfu.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs_dfu.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/arm/ble_app_hrs_dfu.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/gcc/ble_app_hrs.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/gcc/ble_app_hrs.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/gcc/ble_app_hrs_spi.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/gcc/ble_app_hrs_spi.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/iar/ble_app_hrs.ewp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/iar/ble_app_hrs.ewp -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/iar/ble_app_hrs.eww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/iar/ble_app_hrs.eww -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/iar/ble_app_hrs.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/iar/ble_app_hrs.icf -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hrs/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/arm/ble_app_hts.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/gcc/ble_app_hts.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/gcc/ble_app_hts.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/gcc/ble_app_hts_spi.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/gcc/ble_app_hts_spi.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_hts/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/findMeMasterServer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/findMeMasterServer.bin -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_proximity/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_pwr_profiling/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_pwr_profiling/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/arm/ble_app_rscs.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/gcc/ble_app_rscs.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/gcc/ble_app_rscs.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_rscs/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_template/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_template/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_app_template/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_app_template/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_connectivity/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_connectivity/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_dtm/arm/ble_dtm_serialization.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_dtm/arm/ble_dtm_serialization.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_dtm/arm/ble_dtm_serialization.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_dtm/arm/ble_dtm_serialization.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_dtm/arm/ble_dtm_serialization.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_dtm/arm/ble_dtm_serialization.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s110/ble_dtm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s110/ble_dtm/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/arm/ble_app_hrs_c.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/arm/ble_app_hrs_c.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/arm/ble_app_hrs_c.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/arm/ble_app_hrs_c.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/gcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/gcc/makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/twi_master_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_hrs_c/twi_master_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_multilink_central/gcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_multilink_central/gcc/makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_multilink_central/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_multilink_central/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/s120/ble_app_multilink_peripheral/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/s120/ble_app_multilink_peripheral/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/simple_pwm_motor_control_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/simple_pwm_motor_control_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/simple_pwm_motor_control_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/simple_pwm_motor_control_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/simple_pwm_motor_control_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/simple_pwm_motor_control_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_master_example/example_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_master_example/example_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_master_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_master_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_master_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_master_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_master_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_master_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_master_example_with_spi_slave/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_master_example_with_spi_slave/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_slave_example/arm/spi_slave_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_slave_example/arm/spi_slave_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_slave_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_slave_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_slave_example/include/spi_slave_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_slave_example/include/spi_slave_example.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_slave_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_slave_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/spi_slave_example/spi_slave_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/spi_slave_example/spi_slave_example.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/temperature_example/arm/temperature.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/temperature_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/temperature_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/temperature_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/template_project/arm/template_project.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/template_project/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/template_project/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/template_project/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/timer_example/arm/timer_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/timer_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/timer_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/timer_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/twi_sw_master_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/twi_sw_master_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/twi_sw_master_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/twi_sw_master_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/twi_sw_master_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/twi_sw_master_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/twi_sw_master_example/twi_master_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/twi_sw_master_example/twi_master_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uart_example/arm/uart_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uart_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uart_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uart_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uicr_config_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uicr_config_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/nrf6310/uicr_config_example/uicr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/nrf6310/uicr_config_example/uicr_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/button_radio_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/button_radio_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/button_radio_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/button_radio_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/button_radio_example/main_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/button_radio_example/main_rx.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/button_radio_example/radio_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/button_radio_example/radio_config.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/button_radio_example/radio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/button_radio_example/radio_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/led_radio_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/led_radio_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/led_radio_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/led_radio_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/led_radio_example/main_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/led_radio_example/main_tx.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/led_radio_example/radio_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/led_radio_example/radio_config.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/led_radio_example/radio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/led_radio_example/radio_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uart_example/arm/uart_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uart_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uart_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uart_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uicr_config_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uicr_config_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10000/uicr_config_example/uicr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10000/uicr_config_example/uicr_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/blinky_example/arm/blinky.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/blinky_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/blinky_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/blinky_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/button_radio_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/button_radio_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/button_radio_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/button_radio_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/button_radio_example/main_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/button_radio_example/main_tx.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/button_radio_example/radio_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/button_radio_example/radio_config.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/button_radio_example/radio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/button_radio_example/radio_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/led_radio_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/led_radio_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/led_radio_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/led_radio_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/led_radio_example/main_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/led_radio_example/main_rx.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/led_radio_example/radio_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/led_radio_example/radio_config.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/led_radio_example/radio_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/led_radio_example/radio_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_beacon/arm/ble_app_beacon.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_beacon/arm/ble_app_beacon.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_beacon/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_beacon/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_beacon/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_beacon/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/arm/ble_app_hrs.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/battery.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/battery.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/gcc/ble_app_hrs.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/gcc/ble_app_hrs.Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/led.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/led.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/main.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_hrs/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/README.txt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/device_manager_cnfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/device_manager_cnfg.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_app_proximity/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/s110/ble_connectivity/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/s110/ble_connectivity/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvopt -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvoptx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvproj -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uart_example/arm/uart_example.uvprojx -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uart_example/gcc/Makefile -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/gcc/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make clean release 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/gcc/flash.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | make flash 3 | pause -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uart_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uart_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uicr_config_example/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uicr_config_example/main.c -------------------------------------------------------------------------------- /nordic/nrf51822/Board/pca10001/uicr_config_example/uicr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Board/pca10001/uicr_config_example/uicr_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_button.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_error.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_fifo.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_gpiote.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_scheduler.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_timer.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_trace.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_uart.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/app_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/app_util.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/crc16.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/hal_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/hal_transport.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/hci_mem_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/hci_mem_pool.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/hci_mem_pool_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/hci_mem_pool_internal.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/hci_slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/hci_slip.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/hci_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/hci_transport.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/app_common/pstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/app_common/pstorage.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_advdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_advdata.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_advdata_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_advdata_parser.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_central_bondmngr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_central_bondmngr.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_conn_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_conn_params.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_date_time.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_db_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_db_discovery.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_debug_assert_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_debug_assert_handler.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_dtm.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_error_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_error_log.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_flash.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_racp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_racp.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_radio_notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_radio_notification.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_sensorsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_sensorsim.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_ans_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_ans_c.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_bas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_bas.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_bas_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_bas_c.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_bps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_bps.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_cscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_cscs.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_dfu.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_dis.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_gls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_gls.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_gls_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_gls_db.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_hids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_hids.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_hrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_hrs.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_hrs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_hrs_c.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_hts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_hts.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_ias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_ias.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_ias_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_ias_c.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_lls.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_rscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_rscs.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_sc_ctrlpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_sc_ctrlpt.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_sensor_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_sensor_location.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_srv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_srv_common.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/ble_services/ble_tps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/ble_services/ble_tps.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ble/device_manager/device_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ble/device_manager/device_manager.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/boards.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/boards/nrf6310.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/boards/nrf6310.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/boards/pca10000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/boards/pca10000.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/boards/pca10001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/boards/pca10001.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/boards/pca10003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/boards/pca10003.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/bootloader.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/bootloader_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/bootloader_settings.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/bootloader_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/bootloader_types.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/bootloader_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/bootloader_util.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/dfu.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/dfu_app_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/dfu_app_handler.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/dfu_bank_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/dfu_bank_internal.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/dfu_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/dfu_transport.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/dfu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/dfu_types.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/bootloader_dfu/hci_transport/hci_transport_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/bootloader_dfu/hci_transport/hci_transport_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/common.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/compiler_abstraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/compiler_abstraction.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/console.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/esb/nrf_esb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/esb/nrf_esb.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/esb/nrf_esb_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/esb/nrf_esb_constants.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ext_sensors/adns2080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ext_sensors/adns2080.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ext_sensors/cherry8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ext_sensors/cherry8x16.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ext_sensors/ds1624.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ext_sensors/ds1624.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ext_sensors/mpu6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ext_sensors/mpu6050.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ext_sensors/nrf6350.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ext_sensors/nrf6350.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ext_sensors/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ext_sensors/sdio.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/ext_sensors/synaptics_touchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/ext_sensors/synaptics_touchpad.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/gcc/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/gcc/core_cm0.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/gcc/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/gcc/core_cmFunc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/gcc/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/gcc/core_cmInstr.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/gzll/nrf_gzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/gzll/nrf_gzll.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/gzll/nrf_gzll_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/gzll/nrf_gzll_constants.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/gzp/nrf_gzp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/gzp/nrf_gzp.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nordic_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nordic_common.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf51.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf51_bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf51_bitfields.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf51_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf51_deprecated.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf_assert.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf_delay.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf_ecb.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf_gpio.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf_gpiote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf_gpiote.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf_nvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf_nvmc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/nrf_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/nrf_temp.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_err.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_gap.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_gatt.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_gattc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_gatts.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_hci.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_l2cap.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_ranges.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/ble_types.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/nrf_error.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/nrf_error_sdm.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/nrf_error_soc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/nrf_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/nrf_mbr.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/nrf_sdm.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/nrf_soc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/nrf_svc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s110/softdevice_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s110/softdevice_assert.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_err.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_gap.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_gatt.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_gattc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_gattc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_gatts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_gatts.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_hci.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_l2cap.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_ranges.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/ble_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/ble_types.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/nrf_error.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/nrf_error_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/nrf_error_sdm.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/nrf_error_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/nrf_error_soc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/nrf_sdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/nrf_sdm.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/nrf_soc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/nrf_svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/nrf_svc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/s120/softdevice_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/s120/softdevice_assert.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sd_common/ant_stack_handler_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sd_common/ant_stack_handler_types.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sd_common/app_util_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sd_common/app_util_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sd_common/ble_stack_handler_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sd_common/ble_stack_handler_types.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sd_common/softdevice_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sd_common/softdevice_handler.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sdk/sdk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sdk/sdk_common.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sdk/sdk_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sdk/sdk_errors.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sdk/sdk_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sdk/sdk_os.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sdk_soc/app_util_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sdk_soc/app_util_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sdk_soc/nrf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sdk_soc/nrf_error.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/sdk_soc/nrf_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/sdk_soc/nrf_soc.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/application/transport/app_mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/application/transport/app_mailbox.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/application/transport/ser_app_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/application/transport/ser_app_hal.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/application/transport/spi_5W_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/application/transport/spi_5W_master.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/ble_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/ble_serialization.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/cond_field_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/cond_field_serialization.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/ser_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/ser_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/transport/dtm_uart_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/transport/dtm_uart_params.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/transport/ser_hal_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/transport/ser_hal_transport.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/transport/ser_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/transport/ser_phy.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/transport/ser_phy_debug_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/transport/ser_phy_debug_comm.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/common/transport/ser_phy_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/common/transport/ser_phy_hci.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/connectivity/app_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/connectivity/app_scheduler.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/connectivity/pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/connectivity/pstorage_platform.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/connectivity/ser_conn_cmd_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/connectivity/ser_conn_cmd_decoder.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/connectivity/ser_conn_event_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/connectivity/ser_conn_event_encoder.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/connectivity/ser_conn_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/connectivity/ser_conn_handlers.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/connectivity/ser_conn_pkt_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/connectivity/ser_conn_pkt_decoder.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/serialization/connectivity/transport/dtm_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/serialization/connectivity/transport/dtm_uart.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/simple_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/simple_uart.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/spi_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/spi_master.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/spi_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/spi_slave.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/system_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/system_nrf51.h -------------------------------------------------------------------------------- /nordic/nrf51822/Include/twi_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Include/twi_master.h -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/esb/arm/esb_arm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/esb/arm/esb_arm.lib -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/esb/arm/esb_sd_resources_arm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/esb/arm/esb_sd_resources_arm.lib -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/esb/gcc/esb_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/esb/gcc/esb_gcc.a -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/esb/gcc/esb_sd_resources_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/esb/gcc/esb_sd_resources_gcc.a -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/gzll/arm/gzll_arm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/gzll/arm/gzll_arm.lib -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/gzll/arm/gzll_sd_resources_arm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/gzll/arm/gzll_sd_resources_arm.lib -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/gzll/gcc/gzll_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/gzll/gcc/gzll_gcc.a -------------------------------------------------------------------------------- /nordic/nrf51822/Lib/gzll/gcc/gzll_sd_resources_gcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Lib/gzll/gcc/gzll_sd_resources_gcc.a -------------------------------------------------------------------------------- /nordic/nrf51822/SVD/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nordic/nrf51822/SVD/nrf51.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/SVD/nrf51.xml -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_button.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_fifo.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_gpiote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_gpiote.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_scheduler.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_timer.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_trace.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_uart.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/app_uart_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/app_uart_fifo.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/crc16.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/hci_mem_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/hci_mem_pool.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/hci_slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/hci_slip.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/hci_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/hci_transport.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/app_common/pstorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/app_common/pstorage.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_advdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_advdata.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_advdata_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_advdata_parser.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_conn_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_conn_params.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_db_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_db_discovery.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_debug_assert_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_debug_assert_handler.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_dtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_dtm.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_error_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_error_log.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_flash.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_racp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_racp.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_radio_notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_radio_notification.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_sensorsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_sensorsim.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_ans_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_ans_c.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_bas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_bas.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_bas_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_bas_c.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_bps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_bps.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_cscs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_cscs.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_dfu.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_dis.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_gls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_gls.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_gls_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_gls_db.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_hids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_hids.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_hrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_hrs.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_hrs_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_hrs_c.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_hts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_hts.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_ias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_ias.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_ias_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_ias_c.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_lls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_lls.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_rscs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_rscs.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_sc_ctrlpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_sc_ctrlpt.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_srv_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_srv_common.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/ble_services/ble_tps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/ble_services/ble_tps.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/device_manager/device_manager_central.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/device_manager/device_manager_central.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ble/device_manager/device_manager_peripheral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ble/device_manager/device_manager_peripheral.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/bootloader.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/bootloader_settings_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/bootloader_settings_arm.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/bootloader_util_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/bootloader_util_arm.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/bootloader_util_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/bootloader_util_gcc.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/dfu_app_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/dfu_app_handler.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/dfu_dual_bank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/dfu_dual_bank.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/dfu_single_bank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/dfu_single_bank.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/dfu_transport_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/dfu_transport_ble.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/bootloader_dfu/dfu_transport_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/bootloader_dfu/dfu_transport_serial.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/console/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/console/console.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ext_sensors/adns2080/adns2080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ext_sensors/adns2080/adns2080.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ext_sensors/cherry8x16/cherry8x16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ext_sensors/cherry8x16/cherry8x16.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ext_sensors/ds1624/ds1624.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ext_sensors/ds1624/ds1624.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ext_sensors/mpu6050/mpu6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ext_sensors/mpu6050/mpu6050.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ext_sensors/nrf6350/nrf6350.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ext_sensors/nrf6350/nrf6350.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ext_sensors/sdio/sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ext_sensors/sdio/sdio.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/ext_sensors/synaptics_touchpad/synaptics_touchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/ext_sensors/synaptics_touchpad/synaptics_touchpad.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/gzp/nrf_gzp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/gzp/nrf_gzp.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/gzp/nrf_gzp_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/gzp/nrf_gzp_device.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/gzp/nrf_gzp_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/gzp/nrf_gzp_host.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/gzp/nrf_gzp_host_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/gzp/nrf_gzp_host_nrf51.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/keil_arm_uv4.lnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/keil_arm_uv4.lnt -------------------------------------------------------------------------------- /nordic/nrf51822/Source/nrf_assert/nrf_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/nrf_assert/nrf_assert.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/nrf_delay/nrf_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/nrf_delay/nrf_delay.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/nrf_ecb/nrf_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/nrf_ecb/nrf_ecb.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/nrf_nvmc/nrf_nvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/nrf_nvmc/nrf_nvmc.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/sd_common/softdevice_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/sd_common/softdevice_handler.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/sdk_soc/nrf_soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/sdk_soc/nrf_soc.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/application/hal/app_util_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/application/hal/app_util_platform.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/application/hal/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/application/hal/arm_startup_nrf51.s -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/application/hal/pstorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/application/hal/pstorage.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/application/hal/ser_app_hal_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/application/hal/ser_app_hal_nrf51.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/application/hal/ser_config_5W_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/application/hal/ser_config_5W_app.h -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/application/hal/spi_5W_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/application/hal/spi_5W_master.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/application/transport/app_mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/application/transport/app_mailbox.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/ble_serialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/ble_serialization.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/cond_field_serialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/cond_field_serialization.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/transport/ser_hal_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/transport/ser_hal_transport.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/transport/ser_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/transport/ser_phy.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/transport/ser_phy_hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/transport/ser_phy_hci.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/transport/ser_phy_hci_slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/transport/ser_phy_hci_slip.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/transport/ser_phy_nohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/transport/ser_phy_nohci.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/common/transport/ser_phy_nrf51_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/common/transport/ser_phy_nrf51_uart.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/app_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/app_scheduler.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/codecs/common/conn_mw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/codecs/common/conn_mw.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/hal/dtm_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/hal/dtm_uart.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/ser_conn_cmd_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/ser_conn_cmd_decoder.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/ser_conn_error_handling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/ser_conn_error_handling.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/ser_conn_event_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/ser_conn_event_encoder.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/ser_conn_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/ser_conn_handlers.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/serialization/connectivity/ser_conn_pkt_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/serialization/connectivity/ser_conn_pkt_decoder.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/simple_uart/simple_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/simple_uart/simple_uart.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/spi_master/spi_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/spi_master/spi_master.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/spi_slave/spi_slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/spi_slave/spi_slave.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/arm/arm_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/arm/arm_startup_nrf51.s -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/arm/uicr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/arm/uicr_config.h -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/Makefile.common -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/Makefile.posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/Makefile.posix -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/Makefile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/Makefile.windows -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxaa.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_blank_xxab.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_common.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_common.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxaa.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s110_xxab.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s120_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s120_xxaa.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s120_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s120_xxab.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s210_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s210_xxaa.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s210_xxab.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s210_xxab.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s310_xxaa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_nrf51_s310_xxaa.ld -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/gcc/gcc_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/gcc/gcc_startup_nrf51.s -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/iar/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/iar/iar_startup_nrf51.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/iar/iar_startup_nrf51.s -------------------------------------------------------------------------------- /nordic/nrf51822/Source/templates/system_nrf51.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/templates/system_nrf51.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/twi_master/twi_hw_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/twi_master/twi_hw_master.c -------------------------------------------------------------------------------- /nordic/nrf51822/Source/twi_master/twi_sw_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/nrf51822/Source/twi_master/twi_sw_master.c -------------------------------------------------------------------------------- /nordic/s110_nrf51822_7.1.0_softdevice.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/nordic/s110_nrf51822_7.1.0_softdevice.hex -------------------------------------------------------------------------------- /pstorage_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/pstorage_platform.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/readme.md -------------------------------------------------------------------------------- /retarget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/retarget.c -------------------------------------------------------------------------------- /retarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/retarget.h -------------------------------------------------------------------------------- /wiegand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/wiegand.c -------------------------------------------------------------------------------- /wiegand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linklayer/BLEKey/HEAD/wiegand.h --------------------------------------------------------------------------------