在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → NRF51822_SDK9.0 DFU移植笔记

NRF51822_SDK9.0 DFU移植笔记

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:37.68M
  • 下载次数:2
  • 浏览次数:70
  • 发布时间:2020-10-03
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
nrf51822 基于sdk9.0 从机dfu一步一步移植到升级烧入
【实例截图】
【核心代码】
SDK9_DFU
└── SDK9_DFU
├── components
│   ├── ant
│   │   ├── ant_channel_config
│   │   │   ├── ant_channel_config.c
│   │   │   └── ant_channel_config.h
│   │   ├── ant_profiles
│   │   │   └── ant_hrm
│   │   │   ├── ant_hrm.c
│   │   │   ├── ant_hrm.h
│   │   │   ├── pages
│   │   │   │   ├── ant_hrm_page_0.c
│   │   │   │   ├── ant_hrm_page_0.h
│   │   │   │   ├── ant_hrm_page_1.c
│   │   │   │   ├── ant_hrm_page_1.h
│   │   │   │   ├── ant_hrm_page_2.c
│   │   │   │   ├── ant_hrm_page_2.h
│   │   │   │   ├── ant_hrm_page_3.c
│   │   │   │   ├── ant_hrm_page_3.h
│   │   │   │   ├── ant_hrm_page_4.c
│   │   │   │   ├── ant_hrm_page_4.h
│   │   │   │   ├── ant_hrm_pages.h
│   │   │   │   └── logger
│   │   │   │   └── ant_hrm_page_logger.h
│   │   │   └── utils
│   │   │   └── ant_hrm_utils.h
│   │   ├── ant_pulse_simulator
│   │   │   ├── ant_pulse_simulator.c
│   │   │   └── ant_pulse_simulator.h
│   │   ├── ant_stack_config
│   │   │   ├── ant_stack_config.c
│   │   │   ├── ant_stack_config.h
│   │   │   └── config
│   │   │   └── ant_stack_config_defs.h
│   │   └── ant_state_indicator
│   │   ├── ant_state_indicator.c
│   │   └── ant_state_indicator.h
│   ├── ble
│   │   ├── ble_advertising
│   │   │   ├── ble_advertising.c
│   │   │   └── ble_advertising.h
│   │   ├── ble_db_discovery
│   │   │   ├── ble_db_discovery.c
│   │   │   └── ble_db_discovery.h
│   │   ├── ble_debug_assert_handler
│   │   │   ├── ble_debug_assert_handler.c
│   │   │   └── ble_debug_assert_handler.h
│   │   ├── ble_dtm
│   │   │   ├── ble_dtm.c
│   │   │   └── ble_dtm.h
│   │   ├── ble_error_log
│   │   │   ├── ble_error_log.c
│   │   │   └── ble_error_log.h
│   │   ├── ble_racp
│   │   │   ├── ble_racp.c
│   │   │   └── ble_racp.h
│   │   ├── ble_radio_notification
│   │   │   ├── ble_radio_notification.c
│   │   │   └── ble_radio_notification.h
│   │   ├── ble_services
│   │   │   ├── ble_ancs_c
│   │   │   │   ├── ble_ancs_c.c
│   │   │   │   └── ble_ancs_c.h
│   │   │   ├── ble_ans_c
│   │   │   │   ├── ble_ans_c.c
│   │   │   │   └── ble_ans_c.h
│   │   │   ├── ble_bas
│   │   │   │   ├── ble_bas.c
│   │   │   │   └── ble_bas.h
│   │   │   ├── ble_bas_c
│   │   │   │   ├── ble_bas_c.c
│   │   │   │   └── ble_bas_c.h
│   │   │   ├── ble_bps
│   │   │   │   ├── ble_bps.c
│   │   │   │   └── ble_bps.h
│   │   │   ├── ble_cscs
│   │   │   │   ├── ble_cscs.c
│   │   │   │   ├── ble_cscs.h
│   │   │   │   ├── ble_sc_ctrlpt.c
│   │   │   │   └── ble_sc_ctrlpt.h
│   │   │   ├── ble_cts_c
│   │   │   │   ├── ble_cts_c.c
│   │   │   │   └── ble_cts_c.h
│   │   │   ├── ble_dfu
│   │   │   │   ├── ble_dfu.c
│   │   │   │   └── ble_dfu.h
│   │   │   ├── ble_dis
│   │   │   │   ├── ble_dis.c
│   │   │   │   └── ble_dis.h
│   │   │   ├── ble_gls
│   │   │   │   ├── ble_gls.c
│   │   │   │   ├── ble_gls_db.c
│   │   │   │   ├── ble_gls_db.h
│   │   │   │   └── ble_gls.h
│   │   │   ├── ble_hids
│   │   │   │   ├── ble_hids.c
│   │   │   │   └── ble_hids.h
│   │   │   ├── ble_hrs
│   │   │   │   ├── ble_hrs.c
│   │   │   │   └── ble_hrs.h
│   │   │   ├── ble_hrs_c
│   │   │   │   ├── ble_hrs_c.c
│   │   │   │   └── ble_hrs_c.h
│   │   │   ├── ble_hts
│   │   │   │   ├── ble_hts.c
│   │   │   │   └── ble_hts.h
│   │   │   ├── ble_ias
│   │   │   │   ├── ble_ias.c
│   │   │   │   └── ble_ias.h
│   │   │   ├── ble_ias_c
│   │   │   │   ├── ble_ias_c.c
│   │   │   │   └── ble_ias_c.h
│   │   │   ├── ble_lls
│   │   │   │   ├── ble_lls.c
│   │   │   │   └── ble_lls.h
│   │   │   ├── ble_nus
│   │   │   │   ├── ble_nus.c
│   │   │   │   └── ble_nus.h
│   │   │   ├── ble_rscs
│   │   │   │   ├── ble_rscs.c
│   │   │   │   └── ble_rscs.h
│   │   │   ├── ble_rscs_c
│   │   │   │   ├── ble_rscs_c.c
│   │   │   │   └── ble_rscs_c.h
│   │   │   └── ble_tps
│   │   │   ├── ble_tps.c
│   │   │   └── ble_tps.h
│   │   ├── common
│   │   │   ├── ble_advdata.c
│   │   │   ├── ble_advdata.h
│   │   │   ├── ble_advdata_parser.c
│   │   │   ├── ble_advdata_parser.h
│   │   │   ├── ble_conn_params.c
│   │   │   ├── ble_conn_params.h
│   │   │   ├── ble_date_time.h
│   │   │   ├── ble_sensor_location.h
│   │   │   ├── ble_srv_common.c
│   │   │   └── ble_srv_common.h
│   │   └── device_manager
│   │   ├── config
│   │   │   └── device_manager_cnfg.h
│   │   ├── device_manager_central.c
│   │   ├── device_manager.h
│   │   └── device_manager_peripheral.c
│   ├── device
│   │   ├── compiler_abstraction.h
│   │   ├── nrf51_bitfields.h
│   │   ├── nrf51_deprecated.h
│   │   ├── nrf51.h
│   │   └── nrf.h
│   ├── drivers_ext
│   │   ├── adns2080
│   │   │   ├── adns2080.c
│   │   │   └── adns2080.h
│   │   ├── cherry8x16
│   │   │   ├── cherry8x16.c
│   │   │   └── cherry8x16.h
│   │   ├── ds1624
│   │   │   ├── ds1624.c
│   │   │   └── ds1624.h
│   │   ├── mpu6050
│   │   │   ├── mpu6050.c
│   │   │   └── mpu6050.h
│   │   ├── nrf6350
│   │   │   ├── nrf6350.c
│   │   │   └── nrf6350.h
│   │   └── synaptics_touchpad
│   │   ├── synaptics_touchpad.c
│   │   └── synaptics_touchpad.h
│   ├── drivers_nrf
│   │   ├── ble_flash
│   │   │   ├── ble_flash.c
│   │   │   └── ble_flash.h
│   │   ├── clock
│   │   │   ├── nrf_drv_clock.c
│   │   │   └── nrf_drv_clock.h
│   │   ├── common
│   │   │   ├── nrf_drv_common.c
│   │   │   ├── nrf_drv_common.h
│   │   │   └── nrf_drv_validation.h
│   │   ├── config
│   │   │   └── nrf_drv_config.h
│   │   ├── gpiote
│   │   │   ├── nrf_drv_gpiote.c
│   │   │   └── nrf_drv_gpiote.h
│   │   ├── hal
│   │   │   ├── nrf_adc.c
│   │   │   ├── nrf_adc.h
│   │   │   ├── nrf_clock.h
│   │   │   ├── nrf_delay.c
│   │   │   ├── nrf_delay.h
│   │   │   ├── nrf_ecb.c
│   │   │   ├── nrf_ecb.h
│   │   │   ├── nrf_gpio.h
│   │   │   ├── nrf_gpiote.h
│   │   │   ├── nrf_lpcomp.h
│   │   │   ├── nrf_nvmc.c
│   │   │   ├── nrf_nvmc.h
│   │   │   ├── nrf_ppi.h
│   │   │   ├── nrf_qdec.h
│   │   │   ├── nrf_rng.h
│   │   │   ├── nrf_rtc.h
│   │   │   ├── nrf_temp.h
│   │   │   ├── nrf_timer.h
│   │   │   ├── nrf_twi.h
│   │   │   └── nrf_wdt.h
│   │   ├── lpcomp
│   │   │   ├── nrf_drv_lpcomp.c
│   │   │   └── nrf_drv_lpcomp.h
│   │   ├── nrf_soc_nosd
│   │   │   ├── nrf_error.h
│   │   │   ├── nrf_soc.c
│   │   │   └── nrf_soc.h
│   │   ├── ppi
│   │   │   ├── nrf_drv_ppi.c
│   │   │   └── nrf_drv_ppi.h
│   │   ├── pstorage
│   │   │   ├── config
│   │   │   │   └── pstorage_platform.h
│   │   │   ├── pstorage.c
│   │   │   ├── pstorage.h
│   │   │   ├── pstorage_nosd.c
│   │   │   └── pstorage_raw.c
│   │   ├── qdec
│   │   │   ├── nrf_drv_qdec.c
│   │   │   └── nrf_drv_qdec.h
│   │   ├── radio_config
│   │   │   ├── radio_config.c
│   │   │   └── radio_config.h
│   │   ├── rng
│   │   │   ├── nrf_drv_rng.c
│   │   │   └── nrf_drv_rng.h
│   │   ├── rtc
│   │   │   ├── nrf_drv_rtc.c
│   │   │   └── nrf_drv_rtc.h
│   │   ├── sdio
│   │   │   ├── config
│   │   │   │   └── sdio_config.h
│   │   │   ├── sdio.c
│   │   │   └── sdio.h
│   │   ├── spi_master
│   │   │   ├── spi_5W_master.c
│   │   │   ├── spi_5W_master.h
│   │   │   ├── spi_master.c
│   │   │   └── spi_master.h
│   │   ├── spi_slave
│   │   │   ├── spi_slave.c
│   │   │   └── spi_slave.h
│   │   ├── swi
│   │   │   ├── nrf_drv_swi.c
│   │   │   └── nrf_drv_swi.h
│   │   ├── timer
│   │   │   ├── nrf_drv_timer.c
│   │   │   └── nrf_drv_timer.h
│   │   ├── twi_master
│   │   │   ├── incubated
│   │   │   │   ├── config
│   │   │   │   │   └── twi_master_config.h
│   │   │   │   ├── twi_hw_master.c
│   │   │   │   ├── twi_master.h
│   │   │   │   └── twi_sw_master.c
│   │   │   ├── nrf_drv_twi.c
│   │   │   └── nrf_drv_twi.h
│   │   ├── uart
│   │   │   ├── app_uart.c
│   │   │   ├── app_uart_fifo.c
│   │   │   └── app_uart.h
│   │   └── wdt
│   │   ├── nrf_drv_wdt.c
│   │   └── nrf_drv_wdt.h
│   ├── libraries
│   │   ├── ant_fs
│   │   │   ├── antfs.c
│   │   │   ├── antfs.h
│   │   │   ├── crc.c
│   │   │   ├── crc.h
│   │   │   └── defines.h
│   │   ├── bootloader_dfu
│   │   │   ├── ble_transport
│   │   │   │   └── hci_mem_pool_internal.h
│   │   │   ├── bootloader.c
│   │   │   ├── bootloader.h
│   │   │   ├── bootloader_settings.c
│   │   │   ├── bootloader_settings.h
│   │   │   ├── bootloader_types.h
│   │   │   ├── bootloader_util.c
│   │   │   ├── bootloader_util.h
│   │   │   ├── dfu_app_handler.c
│   │   │   ├── dfu_app_handler.h
│   │   │   ├── dfu_bank_internal.h
│   │   │   ├── dfu_ble_svc.h
│   │   │   ├── dfu_ble_svc_internal.h
│   │   │   ├── dfu_dual_bank.c
│   │   │   ├── dfu.h
│   │   │   ├── dfu_init.h
│   │   │   ├── dfu_init_template.c
│   │   │   ├── dfu_single_bank.c
│   │   │   ├── dfu_transport_ble.c
│   │   │   ├── dfu_transport.h
│   │   │   ├── dfu_transport_serial.c
│   │   │   ├── dfu_types.h
│   │   │   ├── experimental
│   │   │   │   ├── dfu_init_template_signing.c
│   │   │   │   └── nrf_sec.h
│   │   │   └── hci_transport
│   │   │   ├── hci_mem_pool_internal.h
│   │   │   └── hci_transport_config.h
│   │   ├── button
│   │   │   ├── app_button.c
│   │   │   └── app_button.h
│   │   ├── console
│   │   │   ├── console.c
│   │   │   └── console.h
│   │   ├── crc16
│   │   │   ├── crc16.c
│   │   │   └── crc16.h
│   │   ├── fifo
│   │   │   ├── app_fifo.c
│   │   │   └── app_fifo.h
│   │   ├── gpiote
│   │   │   ├── app_gpiote.c
│   │   │   ├── app_gpiote_fast_detect.c
│   │   │   └── app_gpiote.h
│   │   ├── hci
│   │   │   ├── config
│   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   └── hci_transport_config.h
│   │   │   ├── hci_mem_pool.c
│   │   │   ├── hci_mem_pool.h
│   │   │   ├── hci_slip.c
│   │   │   ├── hci_slip.h
│   │   │   ├── hci_transport.c
│   │   │   └── hci_transport.h
│   │   ├── ic_info
│   │   │   ├── nrf51_ic_info.c
│   │   │   └── nrf_ic_info.h
│   │   ├── mem_manager
│   │   │   ├── mem_manager.c
│   │   │   └── mem_manager.h
│   │   ├── pwm
│   │   │   ├── app_pwm.c
│   │   │   └── app_pwm.h
│   │   ├── scheduler
│   │   │   ├── app_scheduler.c
│   │   │   ├── app_scheduler.h
│   │   │   └── app_scheduler_serconn.c
│   │   ├── sensorsim
│   │   │   ├── sensorsim.c
│   │   │   └── sensorsim.h
│   │   ├── sha256
│   │   │   ├── sha256.c
│   │   │   └── sha256.h
│   │   ├── simple_timer
│   │   │   ├── app_simple_timer.c
│   │   │   └── app_simple_timer.h
│   │   ├── timer
│   │   │   ├── app_timer_appsh.c
│   │   │   ├── app_timer_appsh.h
│   │   │   ├── app_timer_ble_gzll.c
│   │   │   ├── app_timer.c
│   │   │   ├── app_timer_freertos.c
│   │   │   ├── app_timer.h
│   │   │   └── app_timer_rtx.c
│   │   ├── trace
│   │   │   ├── app_trace.c
│   │   │   └── app_trace.h
│   │   ├── uart
│   │   │   └── retarget.c
│   │   └── util
│   │   ├── app_error.c
│   │   ├── app_error.h
│   │   ├── app_util_bds.h
│   │   ├── app_util.h
│   │   ├── app_util_platform.c
│   │   ├── app_util_platform.h
│   │   ├── common.h
│   │   ├── nordic_common.h
│   │   ├── nrf_assert.c
│   │   ├── nrf_assert.h
│   │   ├── sdk_common.h
│   │   ├── sdk_errors.h
│   │   ├── sdk_os.h
│   │   └── sdk_resources.h
│   ├── properitary_rf
│   │   ├── esb
│   │   │   ├── arm
│   │   │   │   ├── esb_arm.lib
│   │   │   │   └── esb_sd_resources_arm.lib
│   │   │   ├── gcc
│   │   │   │   ├── esb_gcc.a
│   │   │   │   └── esb_sd_resources_gcc.a
│   │   │   ├── iar
│   │   │   │   ├── esb_iar.a
│   │   │   │   └── esb_sd_resource_iar.a
│   │   │   ├── nrf_esb_constants.h
│   │   │   ├── nrf_esb.h
│   │   │   └── nrf_esb_resources.h
│   │   └── gzll
│   │   ├── arm
│   │   │   ├── gzll_arm.lib
│   │   │   └── gzll_sd_resources_arm.lib
│   │   ├── config
│   │   │   └── nrf_gzp_config.h
│   │   ├── gcc
│   │   │   ├── gzll_gcc.a
│   │   │   └── gzll_sd_resources_gcc.a
│   │   ├── iar
│   │   │   ├── gzll_iar.a
│   │   │   └── gzll_sd_resource_iar.a
│   │   ├── nrf_gzll_constants.h
│   │   ├── nrf_gzll.h
│   │   ├── nrf_gzll_resources.h
│   │   ├── nrf_gzp.c
│   │   ├── nrf_gzp_device.c
│   │   ├── nrf_gzp.h
│   │   ├── nrf_gzp_host.c
│   │   └── nrf_gzp_host_nrf51.c
│   ├── serialization
│   │   ├── application
│   │   │   ├── codecs
│   │   │   │   ├── common
│   │   │   │   │   ├── ble_dtm_app.c
│   │   │   │   │   ├── ble_dtm_app.h
│   │   │   │   │   └── 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
│   │   │   │   │   ├── app_ble_gap_sec_keys.c
│   │   │   │   │   ├── app_ble_gap_sec_keys.h
│   │   │   │   │   ├── app_ble_user_mem.c
│   │   │   │   │   ├── app_ble_user_mem.h
│   │   │   │   │   ├── ble_app.h
│   │   │   │   │   ├── ble_enable.c
│   │   │   │   │   ├── ble_event.c
│   │   │   │   │   ├── ble_evt_app.h
│   │   │   │   │   ├── ble_evt_tx_complete.c
│   │   │   │   │   ├── ble_evt_user_mem_release.c
│   │   │   │   │   ├── ble_evt_user_mem_request.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_app.h
│   │   │   │   │   ├── ble_gap_authenticate.c
│   │   │   │   │   ├── ble_gap_auth_key_reply.c
│   │   │   │   │   ├── ble_gap_connect.c
│   │   │   │   │   ├── ble_gap_connect_cancel.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_encrypt.c
│   │   │   │   │   ├── ble_gap_evt_adv_report.c
│   │   │   │   │   ├── ble_gap_evt_app.h
│   │   │   │   │   ├── ble_gap_evt_auth_key_request.c
│   │   │   │   │   ├── ble_gap_evt_auth_status.c
│   │   │   │   │   ├── ble_gap_evt_connected.c
│   │   │   │   │   ├── ble_gap_evt_conn_param_update.c
│   │   │   │   │   ├── ble_gap_evt_conn_param_update_request.c
│   │   │   │   │   ├── ble_gap_evt_conn_sec_update.c
│   │   │   │   │   ├── ble_gap_evt_disconnected.c
│   │   │   │   │   ├── ble_gap_evt_passkey_display.c
│   │   │   │   │   ├── ble_gap_evt_rssi_changed.c
│   │   │   │   │   ├── ble_gap_evt_scan_req_report.c
│   │   │   │   │   ├── ble_gap_evt_sec_info_request.c
│   │   │   │   │   ├── ble_gap_evt_sec_params_request.c
│   │   │   │   │   ├── ble_gap_evt_sec_request.c
│   │   │   │   │   ├── ble_gap_evt_timeout.c
│   │   │   │   │   ├── ble_gap_ppcp_get.c
│   │   │   │   │   ├── ble_gap_ppcp_set.c
│   │   │   │   │   ├── ble_gap_rssi_get.c
│   │   │   │   │   ├── ble_gap_rssi_start.c
│   │   │   │   │   ├── ble_gap_rssi_stop.c
│   │   │   │   │   ├── ble_gap_scan_start.c
│   │   │   │   │   ├── ble_gap_scan_stop.c
│   │   │   │   │   ├── ble_gap_sec_info_reply.c
│   │   │   │   │   ├── ble_gap_sec_params_reply.c
│   │   │   │   │   ├── ble_gap_tx_power_set.c
│   │   │   │   │   ├── ble_gattc_app.h
│   │   │   │   │   ├── ble_gattc_characteristics_discover.c
│   │   │   │   │   ├── ble_gattc_char_value_by_uuid_read.c
│   │   │   │   │   ├── ble_gattc_char_values_read.c
│   │   │   │   │   ├── ble_gattc_descriptors_discover.c
│   │   │   │   │   ├── ble_gattc_evt_app.h
│   │   │   │   │   ├── 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_app.h
│   │   │   │   │   ├── ble_gatts_characteristic_add.c
│   │   │   │   │   ├── ble_gatts_descriptor_add.c
│   │   │   │   │   ├── ble_gatts_evt_app.h
│   │   │   │   │   ├── 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_app.h
│   │   │   │   │   ├── ble_l2cap_cid_register.c
│   │   │   │   │   ├── ble_l2cap_cid_unregister.c
│   │   │   │   │   ├── ble_l2cap_evt_app.h
│   │   │   │   │   ├── ble_l2cap_evt_rx.c
│   │   │   │   │   ├── ble_l2cap_tx.c
│   │   │   │   │   ├── ble_opt_get.c
│   │   │   │   │   ├── ble_opt_set.c
│   │   │   │   │   ├── ble_tx_buffer_count_get.c
│   │   │   │   │   ├── ble_user_mem_reply.c
│   │   │   │   │   ├── ble_uuid_decode.c
│   │   │   │   │   ├── ble_uuid_encode.c
│   │   │   │   │   ├── ble_uuid_vs_add.c
│   │   │   │   │   ├── ble_version_get.c
│   │   │   │   │   ├── nrf_soc_app.h
│   │   │   │   │   ├── power_system_off.c
│   │   │   │   │   └── temp_get.c
│   │   │   │   ├── s120
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── app_ble_gap_sec_keys.c
│   │   │   │   │   ├── app_ble_gap_sec_keys.h
│   │   │   │   │   ├── app_ble_user_mem.c
│   │   │   │   │   ├── app_ble_user_mem.h
│   │   │   │   │   ├── ble_app.h
│   │   │   │   │   ├── ble_enable.c
│   │   │   │   │   ├── ble_event.c
│   │   │   │   │   ├── ble_evt_app.h
│   │   │   │   │   ├── ble_evt_tx_complete.c
│   │   │   │   │   ├── ble_evt_user_mem_release.c
│   │   │   │   │   ├── ble_evt_user_mem_request.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_app.h
│   │   │   │   │   ├── ble_gap_authenticate.c
│   │   │   │   │   ├── ble_gap_auth_key_reply.c
│   │   │   │   │   ├── ble_gap_connect.c
│   │   │   │   │   ├── ble_gap_connect_cancel.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_encrypt.c
│   │   │   │   │   ├── ble_gap_evt_adv_report.c
│   │   │   │   │   ├── ble_gap_evt_app.h
│   │   │   │   │   ├── ble_gap_evt_auth_key_request.c
│   │   │   │   │   ├── ble_gap_evt_auth_status.c
│   │   │   │   │   ├── ble_gap_evt_connected.c
│   │   │   │   │   ├── ble_gap_evt_conn_param_update.c
│   │   │   │   │   ├── ble_gap_evt_conn_param_update_request.c
│   │   │   │   │   ├── ble_gap_evt_conn_sec_update.c
│   │   │   │   │   ├── ble_gap_evt_disconnected.c
│   │   │   │   │   ├── ble_gap_evt_passkey_display.c
│   │   │   │   │   ├── ble_gap_evt_rssi_changed.c
│   │   │   │   │   ├── ble_gap_evt_scan_req_report.c
│   │   │   │   │   ├── ble_gap_evt_sec_info_request.c
│   │   │   │   │   ├── ble_gap_evt_sec_params_request.c
│   │   │   │   │   ├── ble_gap_evt_sec_request.c
│   │   │   │   │   ├── ble_gap_evt_timeout.c
│   │   │   │   │   ├── ble_gap_ppcp_get.c
│   │   │   │   │   ├── ble_gap_ppcp_set.c
│   │   │   │   │   ├── ble_gap_rssi_get.c
│   │   │   │   │   ├── ble_gap_rssi_start.c
│   │   │   │   │   ├── ble_gap_rssi_stop.c
│   │   │   │   │   ├── ble_gap_scan_start.c
│   │   │   │   │   ├── ble_gap_scan_stop.c
│   │   │   │   │   ├── ble_gap_sec_info_reply.c
│   │   │   │   │   ├── ble_gap_sec_params_reply.c
│   │   │   │   │   ├── ble_gap_tx_power_set.c
│   │   │   │   │   ├── ble_gattc_app.h
│   │   │   │   │   ├── ble_gattc_characteristics_discover.c
│   │   │   │   │   ├── ble_gattc_char_value_by_uuid_read.c
│   │   │   │   │   ├── ble_gattc_char_values_read.c
│   │   │   │   │   ├── ble_gattc_descriptors_discover.c
│   │   │   │   │   ├── ble_gattc_evt_app.h
│   │   │   │   │   ├── 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_app.h
│   │   │   │   │   ├── ble_gatts_characteristic_add.c
│   │   │   │   │   ├── ble_gatts_descriptor_add.c
│   │   │   │   │   ├── ble_gatts_evt_app.h
│   │   │   │   │   ├── 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_app.h
│   │   │   │   │   ├── ble_l2cap_cid_register.c
│   │   │   │   │   ├── ble_l2cap_cid_unregister.c
│   │   │   │   │   ├── ble_l2cap_evt_app.h
│   │   │   │   │   ├── ble_l2cap_evt_rx.c
│   │   │   │   │   ├── ble_l2cap_tx.c
│   │   │   │   │   ├── ble_opt_get.c
│   │   │   │   │   ├── ble_opt_set.c
│   │   │   │   │   ├── ble_tx_buffer_count_get.c
│   │   │   │   │   ├── ble_user_mem_reply.c
│   │   │   │   │   ├── ble_uuid_decode.c
│   │   │   │   │   ├── ble_uuid_encode.c
│   │   │   │   │   ├── ble_uuid_vs_add.c
│   │   │   │   │   ├── ble_version_get.c
│   │   │   │   │   ├── nrf_soc_app.h
│   │   │   │   │   ├── power_system_off.c
│   │   │   │   │   └── temp_get.c
│   │   │   │   └── s130
│   │   │   │   ├── 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
│   │   │   │   ├── app_ble_gap_sec_keys.c
│   │   │   │   ├── app_ble_gap_sec_keys.h
│   │   │   │   ├── app_ble_user_mem.c
│   │   │   │   ├── app_ble_user_mem.h
│   │   │   │   ├── ble_app.h
│   │   │   │   ├── ble_enable.c
│   │   │   │   ├── ble_event.c
│   │   │   │   ├── ble_evt_app.h
│   │   │   │   ├── ble_evt_tx_complete.c
│   │   │   │   ├── ble_evt_user_mem_release.c
│   │   │   │   ├── ble_evt_user_mem_request.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_app.h
│   │   │   │   ├── ble_gap_authenticate.c
│   │   │   │   ├── ble_gap_auth_key_reply.c
│   │   │   │   ├── ble_gap_connect.c
│   │   │   │   ├── ble_gap_connect_cancel.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_encrypt.c
│   │   │   │   ├── ble_gap_evt_adv_report.c
│   │   │   │   ├── ble_gap_evt_app.h
│   │   │   │   ├── ble_gap_evt_auth_key_request.c
│   │   │   │   ├── ble_gap_evt_auth_status.c
│   │   │   │   ├── ble_gap_evt_connected.c
│   │   │   │   ├── ble_gap_evt_conn_param_update.c
│   │   │   │   ├── ble_gap_evt_conn_param_update_request.c
│   │   │   │   ├── ble_gap_evt_conn_sec_update.c
│   │   │   │   ├── ble_gap_evt_disconnected.c
│   │   │   │   ├── ble_gap_evt_passkey_display.c
│   │   │   │   ├── ble_gap_evt_rssi_changed.c
│   │   │   │   ├── ble_gap_evt_scan_req_report.c
│   │   │   │   ├── ble_gap_evt_sec_info_request.c
│   │   │   │   ├── ble_gap_evt_sec_params_request.c
│   │   │   │   ├── ble_gap_evt_sec_request.c
│   │   │   │   ├── ble_gap_evt_timeout.c
│   │   │   │   ├── ble_gap_ppcp_get.c
│   │   │   │   ├── ble_gap_ppcp_set.c
│   │   │   │   ├── ble_gap_rssi_get.c
│   │   │   │   ├── ble_gap_rssi_start.c
│   │   │   │   ├── ble_gap_rssi_stop.c
│   │   │   │   ├── ble_gap_scan_start.c
│   │   │   │   ├── ble_gap_scan_stop.c
│   │   │   │   ├── ble_gap_sec_info_reply.c
│   │   │   │   ├── ble_gap_sec_params_reply.c
│   │   │   │   ├── ble_gap_tx_power_set.c
│   │   │   │   ├── ble_gattc_app.h
│   │   │   │   ├── ble_gattc_characteristics_discover.c
│   │   │   │   ├── ble_gattc_char_value_by_uuid_read.c
│   │   │   │   ├── ble_gattc_char_values_read.c
│   │   │   │   ├── ble_gattc_descriptors_discover.c
│   │   │   │   ├── ble_gattc_evt_app.h
│   │   │   │   ├── 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_app.h
│   │   │   │   ├── ble_gatts_characteristic_add.c
│   │   │   │   ├── ble_gatts_descriptor_add.c
│   │   │   │   ├── ble_gatts_evt_app.h
│   │   │   │   ├── 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_app.h
│   │   │   │   ├── ble_l2cap_cid_register.c
│   │   │   │   ├── ble_l2cap_cid_unregister.c
│   │   │   │   ├── ble_l2cap_evt_app.h
│   │   │   │   ├── ble_l2cap_evt_rx.c
│   │   │   │   ├── ble_l2cap_tx.c
│   │   │   │   ├── ble_opt_get.c
│   │   │   │   ├── ble_opt_set.c
│   │   │   │   ├── ble_tx_buffer_count_get.c
│   │   │   │   ├── ble_user_mem_reply.c
│   │   │   │   ├── ble_uuid_decode.c
│   │   │   │   ├── ble_uuid_encode.c
│   │   │   │   ├── ble_uuid_vs_add.c
│   │   │   │   ├── ble_version_get.c
│   │   │   │   ├── nrf_soc_app.h
│   │   │   │   ├── power_system_off.c
│   │   │   │   └── temp_get.c
│   │   │   ├── hal
│   │   │   │   ├── arm_startup_nrf51.s
│   │   │   │   ├── ser_app_hal.h
│   │   │   │   ├── ser_app_hal_nrf51.c
│   │   │   │   ├── ser_app_power_system_off.c
│   │   │   │   └── ser_app_power_system_off.h
│   │   │   └── transport
│   │   │   ├── app_mailbox.c
│   │   │   ├── app_mailbox.h
│   │   │   ├── ser_sd_transport.c
│   │   │   ├── ser_sd_transport.h
│   │   │   ├── ser_softdevice_handler.c
│   │   │   └── ser_softdevice_handler.h
│   │   ├── common
│   │   │   ├── ble_serialization.c
│   │   │   ├── ble_serialization.h
│   │   │   ├── cond_field_serialization.c
│   │   │   ├── cond_field_serialization.h
│   │   │   ├── ser_config.h
│   │   │   ├── struct_ser
│   │   │   │   ├── s110
│   │   │   │   │   ├── ble_gap_struct_serialization.c
│   │   │   │   │   ├── ble_gap_struct_serialization.h
│   │   │   │   │   ├── ble_gattc_struct_serialization.c
│   │   │   │   │   ├── ble_gattc_struct_serialization.h
│   │   │   │   │   ├── ble_gatts_struct_serialization.c
│   │   │   │   │   ├── ble_gatts_struct_serialization.h
│   │   │   │   │   ├── ble_struct_serialization.c
│   │   │   │   │   └── ble_struct_serialization.h
│   │   │   │   ├── s120
│   │   │   │   │   ├── ble_gap_struct_serialization.c
│   │   │   │   │   ├── ble_gap_struct_serialization.h
│   │   │   │   │   ├── ble_gattc_struct_serialization.c
│   │   │   │   │   ├── ble_gattc_struct_serialization.h
│   │   │   │   │   ├── ble_gatts_struct_serialization.c
│   │   │   │   │   ├── ble_gatts_struct_serialization.h
│   │   │   │   │   ├── ble_struct_serialization.c
│   │   │   │   │   └── ble_struct_serialization.h
│   │   │   │   └── s130
│   │   │   │   ├── ble_gap_struct_serialization.c
│   │   │   │   ├── ble_gap_struct_serialization.h
│   │   │   │   ├── ble_gattc_struct_serialization.c
│   │   │   │   ├── ble_gattc_struct_serialization.h
│   │   │   │   ├── ble_gatts_struct_serialization.c
│   │   │   │   ├── ble_gatts_struct_serialization.h
│   │   │   │   ├── ble_struct_serialization.c
│   │   │   │   └── ble_struct_serialization.h
│   │   │   └── transport
│   │   │   ├── debug
│   │   │   │   ├── debug_hci_config_nrf6310.h
│   │   │   │   └── debug_hci_nrf6310.c
│   │   │   ├── dtm_uart_params.h
│   │   │   ├── ser_hal_transport.c
│   │   │   ├── ser_hal_transport.h
│   │   │   ├── ser_phy
│   │   │   │   ├── config
│   │   │   │   │   ├── ser_config_5W_app.h
│   │   │   │   │   ├── ser_phy_config_app_nrf51.h
│   │   │   │   │   ├── ser_phy_config_conn_nrf51.h
│   │   │   │   │   ├── ser_phy_debug_app.h
│   │   │   │   │   └── ser_phy_debug_conn.h
│   │   │   │   ├── ser_phy.c
│   │   │   │   ├── ser_phy.h
│   │   │   │   ├── ser_phy_hci.c
│   │   │   │   ├── ser_phy_hci.h
│   │   │   │   ├── ser_phy_hci_slip.c
│   │   │   │   ├── ser_phy_nohci.c
│   │   │   │   ├── ser_phy_nrf51_spi_5W_master.c
│   │   │   │   ├── ser_phy_nrf51_spi_5W_slave.c
│   │   │   │   ├── ser_phy_nrf51_spi_master.c
│   │   │   │   ├── ser_phy_nrf51_spi_slave.c
│   │   │   │   ├── ser_phy_nrf51_uart.c
│   │   │   │   ├── ser_phy_nrf51_uart_stm_app.c
│   │   │   │   ├── ser_phy_nrf51_uart_stm_conn.c
│   │   │   │   ├── spi_5W_master.c
│   │   │   │   └── spi_5W_master.h
│   │   │   └── ser_phy_debug_comm.h
│   │   └── connectivity
│   │   ├── codecs
│   │   │   ├── common
│   │   │   │   ├── ble_dtm_conn.h
│   │   │   │   ├── ble_dtm_init.c
│   │   │   │   ├── conn_mw.c
│   │   │   │   └── conn_mw.h
│   │   │   ├── s110
│   │   │   │   ├── middleware
│   │   │   │   │   ├── conn_mw_ble.c
│   │   │   │   │   ├── conn_mw_ble_gap.c
│   │   │   │   │   ├── conn_mw_ble_gap.h
│   │   │   │   │   ├── conn_mw_ble_gattc.c
│   │   │   │   │   ├── conn_mw_ble_gattc.h
│   │   │   │   │   ├── conn_mw_ble_gatts.c
│   │   │   │   │   ├── conn_mw_ble_gatts.h
│   │   │   │   │   ├── conn_mw_ble.h
│   │   │   │   │   ├── conn_mw_ble_l2cap.c
│   │   │   │   │   ├── conn_mw_ble_l2cap.h
│   │   │   │   │   ├── conn_mw_items.c
│   │   │   │   │   ├── conn_mw_nrf_soc.c
│   │   │   │   │   └── conn_mw_nrf_soc.h
│   │   │   │   └── serializers
│   │   │   │   ├── ble_conn.h
│   │   │   │   ├── ble_enable.c
│   │   │   │   ├── ble_event.c
│   │   │   │   ├── ble_evt_conn.h
│   │   │   │   ├── ble_evt_tx_complete.c
│   │   │   │   ├── ble_evt_user_mem_release.c
│   │   │   │   ├── ble_evt_user_mem_request.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_authenticate.c
│   │   │   │   ├── ble_gap_auth_key_reply.c
│   │   │   │   ├── ble_gap_connect.c
│   │   │   │   ├── ble_gap_connect_cancel.c
│   │   │   │   ├── ble_gap_conn.h
│   │   │   │   ├── 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_encrypt.c
│   │   │   │   ├── ble_gap_evt_adv_report.c
│   │   │   │   ├── ble_gap_evt_auth_key_request.c
│   │   │   │   ├── ble_gap_evt_auth_status.c
│   │   │   │   ├── ble_gap_evt_connected.c
│   │   │   │   ├── ble_gap_evt_conn.h
│   │   │   │   ├── ble_gap_evt_conn_param_update.c
│   │   │   │   ├── ble_gap_evt_conn_param_update_request.c
│   │   │   │   ├── ble_gap_evt_conn_sec_update.c
│   │   │   │   ├── ble_gap_evt_disconnected.c
│   │   │   │   ├── ble_gap_evt_passkey_display.c
│   │   │   │   ├── ble_gap_evt_rssi_changed.c
│   │   │   │   ├── ble_gap_evt_scan_req_report.c
│   │   │   │   ├── ble_gap_evt_sec_info_request.c
│   │   │   │   ├── ble_gap_evt_sec_params_request.c
│   │   │   │   ├── ble_gap_evt_sec_request.c
│   │   │   │   ├── ble_gap_evt_timeout.c
│   │   │   │   ├── ble_gap_ppcp_get.c
│   │   │   │   ├── ble_gap_ppcp_set.c
│   │   │   │   ├── ble_gap_rssi_get.c
│   │   │   │   ├── ble_gap_rssi_start.c
│   │   │   │   ├── ble_gap_rssi_stop.c
│   │   │   │   ├── ble_gap_scan_start.c
│   │   │   │   ├── ble_gap_scan_stop.c
│   │   │   │   ├── ble_gap_sec_info_reply.c
│   │   │   │   ├── ble_gap_sec_params_reply.c
│   │   │   │   ├── ble_gap_tx_power_set.c
│   │   │   │   ├── ble_gattc_characteristics_discover.c
│   │   │   │   ├── ble_gattc_char_value_by_uuid_read.c
│   │   │   │   ├── ble_gattc_char_values_read.c
│   │   │   │   ├── ble_gattc_conn.h
│   │   │   │   ├── 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_conn.h
│   │   │   │   ├── 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_conn.h
│   │   │   │   ├── ble_gatts_descriptor_add.c
│   │   │   │   ├── ble_gatts_evt_conn.h
│   │   │   │   ├── 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_conn.h
│   │   │   │   ├── ble_l2cap_evt_conn.h
│   │   │   │   ├── 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_user_mem_reply.c
│   │   │   │   ├── ble_uuid_decode.c
│   │   │   │   ├── ble_uuid_encode.c
│   │   │   │   ├── ble_uuid_vs_add.c
│   │   │   │   ├── ble_version_get.c
│   │   │   │   ├── conn_ble_gap_sec_keys.c
│   │   │   │   ├── conn_ble_gap_sec_keys.h
│   │   │   │   ├── conn_ble_user_mem.c
│   │   │   │   ├── conn_ble_user_mem.h
│   │   │   │   ├── nrf_soc_conn.h
│   │   │   │   ├── power_system_off.c
│   │   │   │   └── temp_get.c
│   │   │   ├── s120
│   │   │   │   ├── middleware
│   │   │   │   │   ├── conn_mw_ble.c
│   │   │   │   │   ├── conn_mw_ble_gap.c
│   │   │   │   │   ├── conn_mw_ble_gap.h
│   │   │   │   │   ├── conn_mw_ble_gattc.c
│   │   │   │   │   ├── conn_mw_ble_gattc.h
│   │   │   │   │   ├── conn_mw_ble_gatts.c
│   │   │   │   │   ├── conn_mw_ble_gatts.h
│   │   │   │   │   ├── conn_mw_ble.h
│   │   │   │   │   ├── conn_mw_ble_l2cap.c
│   │   │   │   │   ├── conn_mw_ble_l2cap.h
│   │   │   │   │   ├── conn_mw.h
│   │   │   │   │   ├── conn_mw_items.c
│   │   │   │   │   ├── conn_mw_nrf_soc.c
│   │   │   │   │   └── conn_mw_nrf_soc.h
│   │   │   │   └── serializers
│   │   │   │   ├── ble_conn.h
│   │   │   │   ├── ble_enable.c
│   │   │   │   ├── ble_event.c
│   │   │   │   ├── ble_evt_conn.h
│   │   │   │   ├── ble_evt_tx_complete.c
│   │   │   │   ├── ble_evt_user_mem_release.c
│   │   │   │   ├── ble_evt_user_mem_request.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_authenticate.c
│   │   │   │   ├── ble_gap_auth_key_reply.c
│   │   │   │   ├── ble_gap_connect.c
│   │   │   │   ├── ble_gap_connect_cancel.c
│   │   │   │   ├── ble_gap_conn.h
│   │   │   │   ├── 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_encrypt.c
│   │   │   │   ├── ble_gap_evt_adv_report.c
│   │   │   │   ├── ble_gap_evt_auth_key_request.c
│   │   │   │   ├── ble_gap_evt_auth_status.c
│   │   │   │   ├── ble_gap_evt_connected.c
│   │   │   │   ├── ble_gap_evt_conn.h
│   │   │   │   ├── ble_gap_evt_conn_param_update.c
│   │   │   │   ├── ble_gap_evt_conn_param_update_request.c
│   │   │   │   ├── ble_gap_evt_conn_sec_update.c
│   │   │   │   ├── ble_gap_evt_disconnected.c
│   │   │   │   ├── ble_gap_evt_passkey_display.c
│   │   │   │   ├── ble_gap_evt_rssi_changed.c
│   │   │   │   ├── ble_gap_evt_scan_req_report.c
│   │   │   │   ├── ble_gap_evt_sec_info_request.c
│   │   │   │   ├── ble_gap_evt_sec_params_request.c
│   │   │   │   ├── ble_gap_evt_sec_request.c
│   │   │   │   ├── ble_gap_evt_timeout.c
│   │   │   │   ├── ble_gap_ppcp_get.c
│   │   │   │   ├── ble_gap_ppcp_set.c
│   │   │   │   ├── ble_gap_rssi_get.c
│   │   │   │   ├── ble_gap_rssi_start.c
│   │   │   │   ├── ble_gap_rssi_stop.c
│   │   │   │   ├── ble_gap_scan_start.c
│   │   │   │   ├── ble_gap_scan_stop.c
│   │   │   │   ├── ble_gap_sec_info_reply.c
│   │   │   │   ├── ble_gap_sec_params_reply.c
│   │   │   │   ├── ble_gap_tx_power_set.c
│   │   │   │   ├── ble_gattc_characteristics_discover.c
│   │   │   │   ├── ble_gattc_char_value_by_uuid_read.c
│   │   │   │   ├── ble_gattc_char_values_read.c
│   │   │   │   ├── ble_gattc_conn.h
│   │   │   │   ├── 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_conn.h
│   │   │   │   ├── 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_conn.h
│   │   │   │   ├── ble_gatts_descriptor_add.c
│   │   │   │   ├── ble_gatts_evt_conn.h
│   │   │   │   ├── 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_conn.h
│   │   │   │   ├── ble_l2cap_evt_conn.h
│   │   │   │   ├── 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_user_mem_reply.c
│   │   │   │   ├── ble_uuid_decode.c
│   │   │   │   ├── ble_uuid_encode.c
│   │   │   │   ├── ble_uuid_vs_add.c
│   │   │   │   ├── ble_version_get.c
│   │   │   │   ├── conn_ble_gap_sec_keys.c
│   │   │   │   ├── conn_ble_gap_sec_keys.h
│   │   │   │   ├── conn_ble_user_mem.c
│   │   │   │   ├── conn_ble_user_mem.h
│   │   │   │   ├── nrf_soc_conn.h
│   │   │   │   ├── power_system_off.c
│   │   │   │   └── temp_get.c
│   │   │   └── s130
│   │   │   ├── middleware
│   │   │   │   ├── conn_mw_ble.c
│   │   │   │   ├── conn_mw_ble_gap.c
│   │   │   │   ├── conn_mw_ble_gap.h
│   │   │   │   ├── conn_mw_ble_gattc.c
│   │   │   │   ├── conn_mw_ble_gattc.h
│   │   │   │   ├── conn_mw_ble_gatts.c
│   │   │   │   ├── conn_mw_ble_gatts.h
│   │   │   │   ├── conn_mw_ble.h
│   │   │   │   ├── conn_mw_ble_l2cap.c
│   │   │   │   ├── conn_mw_ble_l2cap.h
│   │   │   │   ├── conn_mw.h
│   │   │   │   ├── conn_mw_items.c
│   │   │   │   ├── conn_mw_nrf_soc.c
│   │   │   │   └── conn_mw_nrf_soc.h
│   │   │   └── serializers
│   │   │   ├── ble_conn.h
│   │   │   ├── ble_enable.c
│   │   │   ├── ble_event.c
│   │   │   ├── ble_evt_conn.h
│   │   │   ├── ble_evt_tx_complete.c
│   │   │   ├── ble_evt_user_mem_release.c
│   │   │   ├── ble_evt_user_mem_request.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_authenticate.c
│   │   │   ├── ble_gap_auth_key_reply.c
│   │   │   ├── ble_gap_connect.c
│   │   │   ├── ble_gap_connect_cancel.c
│   │   │   ├── ble_gap_conn.h
│   │   │   ├── 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_encrypt.c
│   │   │   ├── ble_gap_evt_adv_report.c
│   │   │   ├── ble_gap_evt_auth_key_request.c
│   │   │   ├── ble_gap_evt_auth_status.c
│   │   │   ├── ble_gap_evt_connected.c
│   │   │   ├── ble_gap_evt_conn.h
│   │   │   ├── ble_gap_evt_conn_param_update.c
│   │   │   ├── ble_gap_evt_conn_param_update_request.c
│   │   │   ├── ble_gap_evt_conn_sec_update.c
│   │   │   ├── ble_gap_evt_disconnected.c
│   │   │   ├── ble_gap_evt_passkey_display.c
│   │   │   ├── ble_gap_evt_rssi_changed.c
│   │   │   ├── ble_gap_evt_scan_req_report.c
│   │   │   ├── ble_gap_evt_sec_info_request.c
│   │   │   ├── ble_gap_evt_sec_params_request.c
│   │   │   ├── ble_gap_evt_sec_request.c
│   │   │   ├── ble_gap_evt_timeout.c
│   │   │   ├── ble_gap_ppcp_get.c
│   │   │   ├── ble_gap_ppcp_set.c
│   │   │   ├── ble_gap_rssi_get.c
│   │   │   ├── ble_gap_rssi_start.c
│   │   │   ├── ble_gap_rssi_stop.c
│   │   │   ├── ble_gap_scan_start.c
│   │   │   ├── ble_gap_scan_stop.c
│   │   │   ├── ble_gap_sec_info_reply.c
│   │   │   ├── ble_gap_sec_params_reply.c
│   │   │   ├── ble_gap_tx_power_set.c
│   │   │   ├── ble_gattc_characteristics_discover.c
│   │   │   ├── ble_gattc_char_value_by_uuid_read.c
│   │   │   ├── ble_gattc_char_values_read.c
│   │   │   ├── ble_gattc_conn.h
│   │   │   ├── 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_conn.h
│   │   │   ├── 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_conn.h
│   │   │   ├── ble_gatts_descriptor_add.c
│   │   │   ├── ble_gatts_evt_conn.h
│   │   │   ├── 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_conn.h
│   │   │   ├── ble_l2cap_evt_conn.h
│   │   │   ├── 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_user_mem_reply.c
│   │   │   ├── ble_uuid_decode.c
│   │   │   ├── ble_uuid_encode.c
│   │   │   ├── ble_uuid_vs_add.c
│   │   │   ├── ble_version_get.c
│   │   │   ├── conn_ble_gap_sec_keys.c
│   │   │   ├── conn_ble_gap_sec_keys.h
│   │   │   ├── conn_ble_user_mem.c
│   │   │   ├── conn_ble_user_mem.h
│   │   │   ├── nrf_soc_conn.h
│   │   │   ├── power_system_off.c
│   │   │   └── temp_get.c
│   │   ├── hal
│   │   │   ├── dtm_uart.c
│   │   │   └── dtm_uart.h
│   │   ├── pstorage_platform.h
│   │   ├── ser_conn_cmd_decoder.c
│   │   ├── ser_conn_cmd_decoder.h
│   │   ├── ser_conn_dtm_cmd_decoder.c
│   │   ├── ser_conn_dtm_cmd_decoder.h
│   │   ├── ser_conn_error_handling.c
│   │   ├── ser_conn_event_encoder.c
│   │   ├── ser_conn_event_encoder.h
│   │   ├── ser_conn_handlers.c
│   │   ├── ser_conn_handlers.h
│   │   ├── ser_conn_pkt_decoder.c
│   │   ├── ser_conn_pkt_decoder.h
│   │   └── startup
│   │   └── arm
│   │   └── arm_startup_nrf51.s
│   ├── softdevice
│   │   ├── common
│   │   │   └── softdevice_handler
│   │   │   ├── ant_stack_handler_types.h
│   │   │   ├── ble_stack_handler_types.h
│   │   │   ├── softdevice_handler_appsh.c
│   │   │   ├── softdevice_handler_appsh.h
│   │   │   ├── softdevice_handler.c
│   │   │   └── softdevice_handler.h
│   │   ├── s110
│   │   │   ├── doc
│   │   │   │   ├── s110_nrf51_8.0.0_licence-agreement.pdf
│   │   │   │   ├── s110_nrf51_8.0.0_licence-agreement.txt
│   │   │   │   ├── s110_nrf51_8.0.0_readme.txt
│   │   │   │   ├── s110_nrf51_8.0.0_release-notes.pdf
│   │   │   │   └── s110_nrf51822_8.0.0_migration_document.pdf
│   │   │   ├── headers
│   │   │   │   ├── ble_err.h
│   │   │   │   ├── ble_gap.h
│   │   │   │   ├── ble_gattc.h
│   │   │   │   ├── ble_gatt.h
│   │   │   │   ├── ble_gatts.h
│   │   │   │   ├── ble.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_sd_def.h
│   │   │   │   ├── nrf_sdm.h
│   │   │   │   ├── nrf_soc.h
│   │   │   │   ├── nrf_svc.h
│   │   │   │   └── softdevice_assert.h
│   │   │   ├── hex
│   │   │   │   └── s110_softdevice.hex
│   │   │   └── toolchain
│   │   │   ├── armgcc
│   │   │   │   ├── armgcc_s110_nrf51422_xxaa.ld
│   │   │   │   ├── armgcc_s110_nrf51422_xxac.ld
│   │   │   │   ├── armgcc_s110_nrf51822_xxaa.ld
│   │   │   │   └── armgcc_s110_nrf51822_xxab.ld
│   │   │   └── iar
│   │   │   ├── iar_s110_nrf51422_xxaa.icf
│   │   │   ├── iar_s110_nrf51422_xxac.icf
│   │   │   ├── iar_s110_nrf51822_xxaa.icf
│   │   │   └── iar_s110_nrf51822_xxab.icf
│   │   ├── s120
│   │   │   ├── doc
│   │   │   │   ├── s120_nrf51_2.1.0_licence_agreement.pdf
│   │   │   │   ├── s120_nrf51_2.1.0_readme.txt
│   │   │   │   ├── s120_nrf51_2.1.0_releasenotes.pdf
│   │   │   │   └── s120_nrf51822_2.0.0_licence_agreement.txt
│   │   │   ├── headers
│   │   │   │   ├── ble_err.h
│   │   │   │   ├── ble_gap.h
│   │   │   │   ├── ble_gattc.h
│   │   │   │   ├── ble_gatt.h
│   │   │   │   ├── ble_gatts.h
│   │   │   │   ├── ble.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_sd_def.h
│   │   │   │   ├── nrf_sdm.h
│   │   │   │   ├── nrf_soc.h
│   │   │   │   ├── nrf_svc.h
│   │   │   │   └── softdevice_assert.h
│   │   │   ├── hex
│   │   │   │   └── s120_softdevice.hex
│   │   │   └── toolchain
│   │   │   ├── armgcc
│   │   │   │   ├── armgcc_s120_nrf51422_xxaa.ld
│   │   │   │   ├── armgcc_s120_nrf51422_xxac.ld
│   │   │   │   ├── armgcc_s120_nrf51822_xxaa.ld
│   │   │   │   └── armgcc_s120_nrf51822_xxab.ld
│   │   │   └── iar
│   │   │   ├── iar_s120_nrf51422_xxaa.icf
│   │   │   ├── iar_s120_nrf51422_xxac.icf
│   │   │   ├── iar_s120_nrf51822_xxaa.icf
│   │   │   └── iar_s120_nrf51822_xxab.icf
│   │   ├── s130
│   │   │   ├── doc
│   │   │   │   ├── s130_nrf51822_1.0.0_licence_agreement.pdf
│   │   │   │   └── s130_nrf51822_1.0.0_licence_agreement.txt
│   │   │   ├── headers
│   │   │   │   ├── ble_err.h
│   │   │   │   ├── ble_gap.h
│   │   │   │   ├── ble_gattc.h
│   │   │   │   ├── ble_gatt.h
│   │   │   │   ├── ble_gatts.h
│   │   │   │   ├── ble.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_sd_def.h
│   │   │   │   ├── nrf_sdm.h
│   │   │   │   ├── nrf_soc.h
│   │   │   │   ├── nrf_svc.h
│   │   │   │   └── softdevice_assert.h
│   │   │   ├── hex
│   │   │   │   └── s130_softdevice.hex
│   │   │   └── toolchain
│   │   │   ├── armgcc
│   │   │   │   ├── armgcc_s130_nrf51422_xxaa.ld
│   │   │   │   ├── armgcc_s130_nrf51422_xxac.ld
│   │   │   │   ├── armgcc_s130_nrf51822_xxaa.ld
│   │   │   │   └── armgcc_s130_nrf51822_xxab.ld
│   │   │   └── iar
│   │   │   ├── iar_s130_nrf51422_xxaa.icf
│   │   │   ├── iar_s130_nrf51422_xxac.icf
│   │   │   ├── iar_s130_nrf51822_xxaa.icf
│   │   │   └── iar_s130_nrf51822_xxab.icf
│   │   ├── s210
│   │   │   ├── doc
│   │   │   │   ├── s210_nrf51422_5.0.0_licence_agreement.pdf
│   │   │   │   ├── s210_nrf51422_5.0.0_licence_agreement.txt
│   │   │   │   ├── s210_nrf51422_5.0.0_migration_document.pdf
│   │   │   │   ├── s210_nrf51422_5.0.0_readme.txt
│   │   │   │   └── s210_nrf51422_5.0.0_releasenotes.pdf
│   │   │   ├── headers
│   │   │   │   ├── ant_error.h
│   │   │   │   ├── ant_interface.h
│   │   │   │   ├── ant_parameters.h
│   │   │   │   ├── nrf_error.h
│   │   │   │   ├── nrf_error_sdm.h
│   │   │   │   ├── nrf_error_soc.h
│   │   │   │   ├── nrf_mbr.h
│   │   │   │   ├── nrf_sd_def.h
│   │   │   │   ├── nrf_sdm.h
│   │   │   │   ├── nrf_soc.h
│   │   │   │   ├── nrf_svc.h
│   │   │   │   └── softdevice_assert.h
│   │   │   ├── hex
│   │   │   │   └── s210_softdevice.hex
│   │   │   └── toolchain
│   │   │   ├── armgcc
│   │   │   │   ├── armgcc_s210_nrf51422_xxaa.ld
│   │   │   │   └── armgcc_s210_nrf51422_xxac.ld
│   │   │   └── iar
│   │   │   ├── iar_s210_nrf51422_xxaa.icf
│   │   │   └── iar_s210_nrf51422_xxac.icf
│   │   └── s310
│   │   ├── doc
│   │   │   ├── s310_nrf51822_3.0.0_licence_agreement.pdf
│   │   │   ├── s310_nrf51822_3.0.0_licence_agreement.txt
│   │   │   ├── s310_nrf51822_3.0.0_migration_document.pdf
│   │   │   ├── s310_nrf51822_3.0.0_readme.txt
│   │   │   └── s310_nrf51822_3.0.0_releasenotes.pdf
│   │   ├── headers
│   │   │   ├── ant_error.h
│   │   │   ├── ant_interface.h
│   │   │   ├── ant_parameters.h
│   │   │   ├── ble_err.h
│   │   │   ├── ble_gap.h
│   │   │   ├── ble_gattc.h
│   │   │   ├── ble_gatt.h
│   │   │   ├── ble_gatts.h
│   │   │   ├── ble.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_sd_def.h
│   │   │   ├── nrf_sdm.h
│   │   │   ├── nrf_soc.h
│   │   │   ├── nrf_svc.h
│   │   │   └── softdevice_assert.h
│   │   ├── hex
│   │   │   └── s310_softdevice.hex
│   │   └── toolchain
│   │   ├── armgcc
│   │   │   ├── armgcc_s310_nrf51422_xxaa.ld
│   │   │   └── armgcc_s310_nrf51422_xxac.ld
│   │   └── iar
│   │   ├── iar_s310_nrf51422_xxaa.icf
│   │   └── iar_s310_nrf51422_xxac.icf
│   └── toolchain
│   ├── arm
│   │   ├── arm_startup_nrf51.s
│   │   └── uicr_config.h
│   ├── gcc
│   │   ├── core_cm0.h
│   │   ├── core_cmFunc.h
│   │   ├── core_cmInstr.h
│   │   ├── gcc_nrf51_common.ld
│   │   ├── gcc_startup_nrf51.s
│   │   ├── Makefile.common
│   │   ├── Makefile.posix
│   │   ├── Makefile.windows
│   │   ├── nrf51_xxaa.ld
│   │   ├── nrf51_xxab.ld
│   │   └── nrf51_xxac.ld
│   ├── iar
│   │   ├── iar_nrf51_blank_xxaa.icf
│   │   ├── iar_nrf51_blank_xxac.icf
│   │   ├── iar_startup_nrf51.s
│   │   ├── nrf51xxx_xxaa.icf
│   │   ├── nrf51xxx_xxab.icf
│   │   └── nrf51xxx_xxac.icf
│   ├── system_nrf51422.c
│   ├── system_nrf51.c
│   └── system_nrf51.h
├── documentation
│   ├── index.html
│   ├── Introduction_to_the_S110_SoftDevice_v1.0.pdf
│   ├── license.txt
│   ├── NordicS.jpg
│   ├── release_notes.txt
│   └── series_logo.jpg
├── examples
│   ├── ble_peripheral
│   │   └── ble_app_uart
│   │   ├── Abstract.txt
│   │   ├── ble_app_uart.eww
│   │   ├── ble_app_uart.uvmpw
│   │   ├── config
│   │   │   ├── nrf_drv_config.h
│   │   │   └── pstorage_platform.h
│   │   ├── license.txt
│   │   ├── main.c
│   │   └── pca10028
│   │   └── s110
│   │   └── arm5_no_packs
│   │   ├── ble_app_uart_s110_pca10028.uvguix
│   │   ├── ble_app_uart_s110_pca10028.uvguix.Sch
│   │   ├── ble_app_uart_s110_pca10028.uvoptx
│   │   ├── ble_app_uart_s110_pca10028.uvprojx
│   │   ├── _build
│   │   │   ├── app_button.crf
│   │   │   ├── app_button.d
│   │   │   ├── app_button.o
│   │   │   ├── app_error.crf
│   │   │   ├── app_error.d
│   │   │   ├── app_error.o
│   │   │   ├── app_fifo.crf
│   │   │   ├── app_fifo.d
│   │   │   ├── app_fifo.o
│   │   │   ├── app_timer.crf
│   │   │   ├── app_timer.d
│   │   │   ├── app_timer.o
│   │   │   ├── app_trace.crf
│   │   │   ├── app_trace.d
│   │   │   ├── app_trace.o
│   │   │   ├── app_uart_fifo.crf
│   │   │   ├── app_uart_fifo.d
│   │   │   ├── app_uart_fifo.o
│   │   │   ├── arm_startup_nrf51.d
│   │   │   ├── arm_startup_nrf51.lst
│   │   │   ├── arm_startup_nrf51.o
│   │   │   ├── ble_advdata.crf
│   │   │   ├── ble_advdata.d
│   │   │   ├── ble_advdata.o
│   │   │   ├── ble_advertising.crf
│   │   │   ├── ble_advertising.d
│   │   │   ├── ble_advertising.o
│   │   │   ├── ble_app_uart_s110_pca10028_nrf51422_xxac_s110.dep
│   │   │   ├── ble_conn_params.crf
│   │   │   ├── ble_conn_params.d
│   │   │   ├── ble_conn_params.o
│   │   │   ├── ble_dfu.crf
│   │   │   ├── ble_dfu.d
│   │   │   ├── ble_dfu.o
│   │   │   ├── ble_nus.crf
│   │   │   ├── ble_nus.d
│   │   │   ├── ble_nus.o
│   │   │   ├── ble_srv_common.crf
│   │   │   ├── ble_srv_common.d
│   │   │   ├── ble_srv_common.o
│   │   │   ├── bootloader_util.crf
│   │   │   ├── bootloader_util.d
│   │   │   ├── bootloader_util.o
│   │   │   ├── bsp_btn_ble.crf
│   │   │   ├── bsp_btn_ble.d
│   │   │   ├── bsp_btn_ble.o
│   │   │   ├── bsp.crf
│   │   │   ├── bsp.d
│   │   │   ├── bsp.o
│   │   │   ├── device_manager_peripheral.crf
│   │   │   ├── device_manager_peripheral.d
│   │   │   ├── device_manager_peripheral.o
│   │   │   ├── dfu_app_handler.crf
│   │   │   ├── dfu_app_handler.d
│   │   │   ├── dfu_app_handler.o
│   │   │   ├── main.crf
│   │   │   ├── main.d
│   │   │   ├── main.o
│   │   │   ├── nrf51422_xxac_s110.axf
│   │   │   ├── nrf51422_xxac_s110.build_log.htm
│   │   │   ├── nrf51422_xxac_s110.hex
│   │   │   ├── nrf51422_xxac_s110.htm
│   │   │   ├── nrf51422_xxac_s110.lnp
│   │   │   ├── nrf51422_xxac_s110.map
│   │   │   ├── nrf51422_xxac_s110.sct
│   │   │   ├── nrf_assert.crf
│   │   │   ├── nrf_assert.d
│   │   │   ├── nrf_assert.o
│   │   │   ├── nrf_delay.crf
│   │   │   ├── nrf_delay.d
│   │   │   ├── nrf_delay.o
│   │   │   ├── nrf_drv_common.crf
│   │   │   ├── nrf_drv_common.d
│   │   │   ├── nrf_drv_common.o
│   │   │   ├── nrf_drv_gpiote.crf
│   │   │   ├── nrf_drv_gpiote.d
│   │   │   ├── nrf_drv_gpiote.o
│   │   │   ├── pstorage.crf
│   │   │   ├── pstorage.d
│   │   │   ├── pstorage.o
│   │   │   ├── retarget.crf
│   │   │   ├── retarget.d
│   │   │   ├── retarget.o
│   │   │   ├── softdevice_handler.crf
│   │   │   ├── softdevice_handler.d
│   │   │   ├── softdevice_handler.o
│   │   │   ├── system_nrf51.crf
│   │   │   ├── system_nrf51.d
│   │   │   └── system_nrf51.o
│   │   ├── JLinkLog.txt
│   │   ├── JLinkSettings.ini
│   │   └── RTE
│   │   ├── Device
│   │   │   └── nRF51422_xxAC
│   │   │   ├── arm_startup_nrf51.s
│   │   │   └── system_nrf51.c
│   │   ├── _nrf51422_xxac_s110
│   │   │   └── RTE_Components.h
│   │   └── RTE_Components.h
│   ├── bsp
│   │   ├── boards.h
│   │   ├── bsp_btn_ble.c
│   │   ├── bsp_btn_ble.h
│   │   ├── bsp.c
│   │   ├── bsp.h
│   │   ├── nrf6310.h
│   │   ├── pca10000.h
│   │   ├── pca10001.h
│   │   ├── pca10003.h
│   │   ├── pca10028.h
│   │   ├── pca10031.h
│   │   ├── pca20006.h
│   │   └── wt51822.h
│   ├── dfu
│   │   ├── ble_dfu_send_hex
│   │   │   └── test_images_update
│   │   │   ├── dfu_test_app_hrm_s110.hex
│   │   │   ├── dfu_test_app_hrm_s110.zip
│   │   │   ├── dfu_test_app_hrm_s130.hex
│   │   │   ├── dfu_test_app_hrm_s130.zip
│   │   │   ├── dfu_test_bootloader_b.hex
│   │   │   ├── dfu_test_bootloader_b.zip
│   │   │   ├── dfu_test_softdevice_b.hex
│   │   │   ├── dfu_test_softdevice_b.zip
│   │   │   ├── dfu_test_softdevice_w_bootloader_b.hex
│   │   │   └── dfu_test_softdevice_w_bootloader_b.zip
│   │   ├── bootloader
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028
│   │   │   │   │   └── hci_mem_pool_internal.h
│   │   │   │   ├── dfu_dual_bank_ble_s130_pca10028
│   │   │   │   │   └── hci_mem_pool_internal.h
│   │   │   │   ├── dfu_dual_bank_ble_s310_pca10028
│   │   │   │   │   └── hci_mem_pool_internal.h
│   │   │   │   ├── dfu_dual_bank_serial_s110_pca10028
│   │   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   │   └── hci_transport_config.h
│   │   │   │   ├── dfu_dual_bank_serial_s130_pca10028
│   │   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   │   └── hci_transport_config.h
│   │   │   │   ├── dfu_dual_bank_serial_s310_pca10028
│   │   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   │   └── hci_transport_config.h
│   │   │   │   ├── dfu_single_bank_serial_s110_pca10028
│   │   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   │   └── hci_transport_config.h
│   │   │   │   ├── dfu_single_bank_serial_s130_pca10028
│   │   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   │   └── hci_transport_config.h
│   │   │   │   ├── dfu_single_bank_serial_s310_pca10028
│   │   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   │   └── hci_transport_config.h
│   │   │   │   ├── nrf_drv_config.h
│   │   │   │   └── pstorage_platform.h
│   │   │   ├── dfu_ble_svc.c
│   │   │   ├── dfu.eww
│   │   │   ├── dfu_gcc_nrf51.ld
│   │   │   ├── dfu.uvmpw
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   └── pca10028
│   │   │   ├── dual_bank_ble_s110
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvgui
│   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvopt
│   │   │   │   │   └── dfu_dual_bank_ble_s110_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── _build
│   │   │   │   │   │   ├── app_error._2i
│   │   │   │   │   │   ├── app_error.crf
│   │   │   │   │   │   ├── app_error.d
│   │   │   │   │   │   ├── app_error.o
│   │   │   │   │   │   ├── app_scheduler._2i
│   │   │   │   │   │   ├── app_scheduler.crf
│   │   │   │   │   │   ├── app_scheduler.d
│   │   │   │   │   │   ├── app_scheduler.o
│   │   │   │   │   │   ├── app_timer._2i
│   │   │   │   │   │   ├── app_timer_appsh.crf
│   │   │   │   │   │   ├── app_timer_appsh.d
│   │   │   │   │   │   ├── app_timer_appsh.o
│   │   │   │   │   │   ├── app_timer.crf
│   │   │   │   │   │   ├── app_timer.d
│   │   │   │   │   │   ├── app_timer.o
│   │   │   │   │   │   ├── arm_startup_nrf51.d
│   │   │   │   │   │   ├── arm_startup_nrf51.lst
│   │   │   │   │   │   ├── arm_startup_nrf51.o
│   │   │   │   │   │   ├── ble_advdata.crf
│   │   │   │   │   │   ├── ble_advdata.d
│   │   │   │   │   │   ├── ble_advdata.o
│   │   │   │   │   │   ├── ble_conn_params._2i
│   │   │   │   │   │   ├── ble_conn_params.crf
│   │   │   │   │   │   ├── ble_conn_params.d
│   │   │   │   │   │   ├── ble_conn_params.o
│   │   │   │   │   │   ├── ble_dfu.crf
│   │   │   │   │   │   ├── ble_dfu.d
│   │   │   │   │   │   ├── ble_dfu.o
│   │   │   │   │   │   ├── ble_srv_common._2i
│   │   │   │   │   │   ├── ble_srv_common.crf
│   │   │   │   │   │   ├── ble_srv_common.d
│   │   │   │   │   │   ├── ble_srv_common.o
│   │   │   │   │   │   ├── bootloader._2i
│   │   │   │   │   │   ├── bootloader.crf
│   │   │   │   │   │   ├── bootloader.d
│   │   │   │   │   │   ├── bootloader.o
│   │   │   │   │   │   ├── bootloader_settings._2i
│   │   │   │   │   │   ├── bootloader_settings.crf
│   │   │   │   │   │   ├── bootloader_settings.d
│   │   │   │   │   │   ├── bootloader_settings.o
│   │   │   │   │   │   ├── bootloader_util.crf
│   │   │   │   │   │   ├── bootloader_util.d
│   │   │   │   │   │   ├── bootloader_util.o
│   │   │   │   │   │   ├── crc16.crf
│   │   │   │   │   │   ├── crc16.d
│   │   │   │   │   │   ├── crc16.o
│   │   │   │   │   │   ├── dfu_ble_svc._2i
│   │   │   │   │   │   ├── dfu_ble_svc.crf
│   │   │   │   │   │   ├── dfu_ble_svc.d
│   │   │   │   │   │   ├── dfu_ble_svc.o
│   │   │   │   │   │   ├── dfu_dual_bank._2i
│   │   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028_nrf51422_xxac.dep
│   │   │   │   │   │   ├── dfu_dual_bank.crf
│   │   │   │   │   │   ├── dfu_dual_bank.d
│   │   │   │   │   │   ├── dfu_dual_bank.o
│   │   │   │   │   │   ├── dfu_init_template._2i
│   │   │   │   │   │   ├── dfu_init_template.crf
│   │   │   │   │   │   ├── dfu_init_template.d
│   │   │   │   │   │   ├── dfu_init_template.o
│   │   │   │   │   │   ├── dfu_transport_ble._2i
│   │   │   │   │   │   ├── dfu_transport_ble.crf
│   │   │   │   │   │   ├── dfu_transport_ble.d
│   │   │   │   │   │   ├── dfu_transport_ble.o
│   │   │   │   │   │   ├── hci_mem_pool._2i
│   │   │   │   │   │   ├── hci_mem_pool.crf
│   │   │   │   │   │   ├── hci_mem_pool.d
│   │   │   │   │   │   ├── hci_mem_pool.o
│   │   │   │   │   │   ├── main._2i
│   │   │   │   │   │   ├── main.crf
│   │   │   │   │   │   ├── main.d
│   │   │   │   │   │   ├── main.o
│   │   │   │   │   │   ├── nrf51422_xxac.axf
│   │   │   │   │   │   ├── nrf51422_xxac.build_log.htm
│   │   │   │   │   │   ├── nrf51422_xxac.fed
│   │   │   │   │   │   ├── nrf51422_xxac.hex
│   │   │   │   │   │   ├── nrf51422_xxac.htm
│   │   │   │   │   │   ├── nrf51422_xxac.l2p
│   │   │   │   │   │   ├── nrf51422_xxac.lnp
│   │   │   │   │   │   ├── nrf51422_xxac.map
│   │   │   │   │   │   ├── nrf51422_xxac.sct
│   │   │   │   │   │   ├── nrf_assert.crf
│   │   │   │   │   │   ├── nrf_assert.d
│   │   │   │   │   │   ├── nrf_assert.o
│   │   │   │   │   │   ├── nrf_delay._2i
│   │   │   │   │   │   ├── nrf_delay.crf
│   │   │   │   │   │   ├── nrf_delay.d
│   │   │   │   │   │   ├── nrf_delay.o
│   │   │   │   │   │   ├── pstorage_raw._2i
│   │   │   │   │   │   ├── pstorage_raw.crf
│   │   │   │   │   │   ├── pstorage_raw.d
│   │   │   │   │   │   ├── pstorage_raw.o
│   │   │   │   │   │   ├── softdevice_handler._2i
│   │   │   │   │   │   ├── softdevice_handler_appsh._2i
│   │   │   │   │   │   ├── softdevice_handler_appsh.crf
│   │   │   │   │   │   ├── softdevice_handler_appsh.d
│   │   │   │   │   │   ├── softdevice_handler_appsh.o
│   │   │   │   │   │   ├── softdevice_handler.crf
│   │   │   │   │   │   ├── softdevice_handler.d
│   │   │   │   │   │   ├── softdevice_handler.o
│   │   │   │   │   │   ├── system_nrf51._2i
│   │   │   │   │   │   ├── system_nrf51.crf
│   │   │   │   │   │   ├── system_nrf51.d
│   │   │   │   │   │   └── system_nrf51.o
│   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvguix
│   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvguix.Sch
│   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvoptx
│   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvprojx
│   │   │   │   │   └── RTE
│   │   │   │   │   ├── Device
│   │   │   │   │   │   └── nRF51422_xxAC
│   │   │   │   │   │   ├── arm_startup_nrf51.s
│   │   │   │   │   │   └── system_nrf51.c
│   │   │   │   │   ├── _nrf51422_xxac
│   │   │   │   │   │   └── RTE_Components.h
│   │   │   │   │   └── RTE_Components.h
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.ewd
│   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.ewp
│   │   │   │   └── dfu_iar_nrf51.icf
│   │   │   ├── dual_bank_ble_s130
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_dual_bank_ble_s130_pca10028.uvgui
│   │   │   │   │   ├── dfu_dual_bank_ble_s130_pca10028.uvopt
│   │   │   │   │   └── dfu_dual_bank_ble_s130_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── dfu_dual_bank_ble_s130_pca10028.uvguix
│   │   │   │   │   ├── dfu_dual_bank_ble_s130_pca10028.uvoptx
│   │   │   │   │   └── dfu_dual_bank_ble_s130_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_dual_bank_ble_s130_pca10028.ewd
│   │   │   │   ├── dfu_dual_bank_ble_s130_pca10028.ewp
│   │   │   │   └── dfu_iar_nrf51.icf
│   │   │   ├── dual_bank_ble_s310
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_dual_bank_ble_s310_pca10028.uvgui
│   │   │   │   │   ├── dfu_dual_bank_ble_s310_pca10028.uvopt
│   │   │   │   │   └── dfu_dual_bank_ble_s310_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── dfu_dual_bank_ble_s310_pca10028.uvguix
│   │   │   │   │   ├── dfu_dual_bank_ble_s310_pca10028.uvoptx
│   │   │   │   │   └── dfu_dual_bank_ble_s310_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_dual_bank_ble_s310_pca10028.ewd
│   │   │   │   ├── dfu_dual_bank_ble_s310_pca10028.ewp
│   │   │   │   └── dfu_iar_nrf51.icf
│   │   │   ├── dual_bank_serial_s110
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_dual_bank_serial_s110_pca10028.uvgui
│   │   │   │   │   ├── dfu_dual_bank_serial_s110_pca10028.uvopt
│   │   │   │   │   └── dfu_dual_bank_serial_s110_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── dfu_dual_bank_serial_s110_pca10028.uvguix
│   │   │   │   │   ├── dfu_dual_bank_serial_s110_pca10028.uvoptx
│   │   │   │   │   └── dfu_dual_bank_serial_s110_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_dual_bank_serial_s110_pca10028.ewd
│   │   │   │   ├── dfu_dual_bank_serial_s110_pca10028.ewp
│   │   │   │   └── dfu_iar_nrf51.icf
│   │   │   ├── dual_bank_serial_s130
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_dual_bank_serial_s130_pca10028.uvgui
│   │   │   │   │   ├── dfu_dual_bank_serial_s130_pca10028.uvopt
│   │   │   │   │   └── dfu_dual_bank_serial_s130_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── dfu_dual_bank_serial_s130_pca10028.uvguix
│   │   │   │   │   ├── dfu_dual_bank_serial_s130_pca10028.uvoptx
│   │   │   │   │   └── dfu_dual_bank_serial_s130_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_dual_bank_serial_s130_pca10028.ewd
│   │   │   │   ├── dfu_dual_bank_serial_s130_pca10028.ewp
│   │   │   │   └── dfu_iar_nrf51.icf
│   │   │   ├── dual_bank_serial_s310
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_dual_bank_serial_s310_pca10028.uvgui
│   │   │   │   │   ├── dfu_dual_bank_serial_s310_pca10028.uvopt
│   │   │   │   │   └── dfu_dual_bank_serial_s310_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── dfu_dual_bank_serial_s310_pca10028.uvguix
│   │   │   │   │   ├── dfu_dual_bank_serial_s310_pca10028.uvoptx
│   │   │   │   │   └── dfu_dual_bank_serial_s310_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_dual_bank_serial_s310_pca10028.ewd
│   │   │   │   ├── dfu_dual_bank_serial_s310_pca10028.ewp
│   │   │   │   └── dfu_iar_nrf51.icf
│   │   │   ├── single_bank_serial_s110
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_single_bank_serial_s110_pca10028.uvgui
│   │   │   │   │   ├── dfu_single_bank_serial_s110_pca10028.uvopt
│   │   │   │   │   └── dfu_single_bank_serial_s110_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── dfu_single_bank_serial_s110_pca10028.uvguix
│   │   │   │   │   ├── dfu_single_bank_serial_s110_pca10028.uvoptx
│   │   │   │   │   └── dfu_single_bank_serial_s110_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_iar_nrf51.icf
│   │   │   │   ├── dfu_single_bank_serial_s110_pca10028.ewd
│   │   │   │   └── dfu_single_bank_serial_s110_pca10028.ewp
│   │   │   ├── single_bank_serial_s130
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_single_bank_serial_s130_pca10028.uvgui
│   │   │   │   │   ├── dfu_single_bank_serial_s130_pca10028.uvopt
│   │   │   │   │   └── dfu_single_bank_serial_s130_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── dfu_single_bank_serial_s130_pca10028.uvguix
│   │   │   │   │   ├── dfu_single_bank_serial_s130_pca10028.uvoptx
│   │   │   │   │   └── dfu_single_bank_serial_s130_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── dfu_iar_nrf51.icf
│   │   │   │   ├── dfu_single_bank_serial_s130_pca10028.ewd
│   │   │   │   └── dfu_single_bank_serial_s130_pca10028.ewp
│   │   │   └── single_bank_serial_s310
│   │   │   ├── arm4
│   │   │   │   ├── dfu_single_bank_serial_s310_pca10028.uvgui
│   │   │   │   ├── dfu_single_bank_serial_s310_pca10028.uvopt
│   │   │   │   └── dfu_single_bank_serial_s310_pca10028.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── dfu_single_bank_serial_s310_pca10028.uvguix
│   │   │   │   ├── dfu_single_bank_serial_s310_pca10028.uvoptx
│   │   │   │   └── dfu_single_bank_serial_s310_pca10028.uvprojx
│   │   │   ├── armgcc
│   │   │   │   └── Makefile
│   │   │   └── iar
│   │   │   ├── dfu_iar_nrf51.icf
│   │   │   ├── dfu_single_bank_serial_s310_pca10028.ewd
│   │   │   └── dfu_single_bank_serial_s310_pca10028.ewp
│   │   ├── experimental
│   │   │   ├── bootloader_signing
│   │   │   │   ├── config
│   │   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028
│   │   │   │   │   │   └── hci_mem_pool_internal.h
│   │   │   │   │   └── pstorage_platform.h
│   │   │   │   ├── dfu_ble_svc.c
│   │   │   │   ├── dfu_gcc_nrf51.ld
│   │   │   │   ├── main.c
│   │   │   │   └── pca10028
│   │   │   │   └── dual_bank_ble_s110
│   │   │   │   └── arm5_no_packs
│   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvguix
│   │   │   │   ├── dfu_dual_bank_ble_s110_pca10028.uvoptx
│   │   │   │   └── dfu_dual_bank_ble_s110_pca10028.uvprojx
│   │   │   ├── Experimental_DFU_Signing.pdf
│   │   │   ├── master_control_panel_patch
│   │   │   │   ├── dfu_transport_ble.py
│   │   │   │   ├── init_packet.py
│   │   │   │   ├── manifest.py
│   │   │   │   └── package.py
│   │   │   ├── nrf_sec_module
│   │   │   │   ├── arm_startup_nrf51.s
│   │   │   │   ├── ecc
│   │   │   │   │   ├── ecc.c
│   │   │   │   │   └── ecc.h
│   │   │   │   ├── nrf_sec.uvoptx
│   │   │   │   ├── nrf_sec.uvprojx
│   │   │   │   ├── SVC_main.c
│   │   │   │   └── system_nrf51.c
│   │   │   ├── pc-nrfutil.zip
│   │   │   └── test_images
│   │   │   ├── dfu_test_app_hrm_s110_forged.zip
│   │   │   ├── dfu_test_app_hrm_s110.zip
│   │   │   ├── nrf_sec.hex
│   │   │   ├── priv.pem
│   │   │   └── public.h
│   │   ├── experimental_ant_bootloader
│   │   │   ├── Abstract.txt
│   │   │   ├── ant_boot_settings_api.c
│   │   │   ├── ant_dfu_license.txt
│   │   │   ├── antfs.c
│   │   │   ├── antfs_ota.c
│   │   │   ├── arm_startup_nrf51.s
│   │   │   ├── bootloader.c
│   │   │   ├── bootloader_util_arm.c
│   │   │   ├── config
│   │   │   │   └── ant_stack_config_defs.h
│   │   │   ├── crc.c
│   │   │   ├── debug_pin.c
│   │   │   ├── dfu_dual_bank.c
│   │   │   ├── dfu_transport_ant.c
│   │   │   ├── dfu.uvmpw
│   │   │   ├── include
│   │   │   │   ├── ant_boot_settings_api.h
│   │   │   │   ├── ant_boot_settings.h
│   │   │   │   ├── antfs.h
│   │   │   │   ├── antfs_ota.h
│   │   │   │   ├── bootloader.h
│   │   │   │   ├── bootloader_types.h
│   │   │   │   ├── bootloader_util.h
│   │   │   │   ├── crc.h
│   │   │   │   ├── debug_pin.h
│   │   │   │   ├── defines.h
│   │   │   │   ├── dfu.h
│   │   │   │   ├── dfu_transport.h
│   │   │   │   ├── dfu_types.h
│   │   │   │   ├── error_handler.h
│   │   │   │   ├── hci_mem_pool_internal.h
│   │   │   │   └── pstorage_platform.h
│   │   │   ├── libs
│   │   │   │   ├── app_scheduler.c
│   │   │   │   ├── app_timer.c
│   │   │   │   ├── include
│   │   │   │   │   ├── ant_stack_handler_types.h
│   │   │   │   │   ├── app_error.h
│   │   │   │   │   ├── app_scheduler.h
│   │   │   │   │   ├── app_timer.h
│   │   │   │   │   ├── app_util.h
│   │   │   │   │   ├── app_util_platform.h
│   │   │   │   │   ├── ble_stack_handler_types.h
│   │   │   │   │   ├── boards
│   │   │   │   │   │   ├── n5_starterkit.h
│   │   │   │   │   │   ├── nrf6310.h
│   │   │   │   │   │   ├── pca10000.h
│   │   │   │   │   │   ├── pca10001.h
│   │   │   │   │   │   └── pca10003.h
│   │   │   │   │   ├── boards.h
│   │   │   │   │   ├── compiler_abstraction.h
│   │   │   │   │   ├── crc16.h
│   │   │   │   │   ├── hci_mem_pool.h
│   │   │   │   │   ├── nordic_common.h
│   │   │   │   │   ├── nrf_assert.h
│   │   │   │   │   ├── nrf_delay.h
│   │   │   │   │   ├── nrf_gpio.h
│   │   │   │   │   ├── nrf_nvmc.h
│   │   │   │   │   ├── pstorage.h
│   │   │   │   │   ├── softdevice_handler.h
│   │   │   │   │   └── system_nrf51.h
│   │   │   │   ├── nrf_delay.c
│   │   │   │   ├── nrf_nvmc.c
│   │   │   │   ├── pstorage.c
│   │   │   │   ├── softdevice_handler.c
│   │   │   │   └── system_nrf51.c
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── ota_tester
│   │   │   │   ├── Abstract.txt
│   │   │   │   ├── ant_boot_settings_api.c
│   │   │   │   ├── config
│   │   │   │   │   └── ant_stack_config_defs.h
│   │   │   │   ├── include
│   │   │   │   │   ├── ant_boot_settings_api.h
│   │   │   │   │   ├── ant_boot_settings.h
│   │   │   │   │   └── bootloader_types.h
│   │   │   │   ├── license.txt
│   │   │   │   ├── main.c
│   │   │   │   ├── ota_tester.uvmpw
│   │   │   │   └── pca10028
│   │   │   │   ├── s210
│   │   │   │   │   ├── arm4
│   │   │   │   │   │   ├── ota_tester_s210_pca10028.uvgui
│   │   │   │   │   │   ├── ota_tester_s210_pca10028.uvopt
│   │   │   │   │   │   └── ota_tester_s210_pca10028.uvproj
│   │   │   │   │   └── arm5_no_packs
│   │   │   │   │   ├── ota_tester_s210_pca10028.uvguix
│   │   │   │   │   ├── ota_tester_s210_pca10028.uvoptx
│   │   │   │   │   └── ota_tester_s210_pca10028.uvprojx
│   │   │   │   └── s310
│   │   │   │   ├── arm4
│   │   │   │   │   ├── ota_tester_s310_pca10028.uvgui
│   │   │   │   │   ├── ota_tester_s310_pca10028.uvopt
│   │   │   │   │   └── ota_tester_s310_pca10028.uvproj
│   │   │   │   └── arm5_no_packs
│   │   │   │   ├── ota_tester_s310_pca10028.uvguix
│   │   │   │   ├── ota_tester_s310_pca10028.uvoptx
│   │   │   │   └── ota_tester_s310_pca10028.uvprojx
│   │   │   ├── pca10028
│   │   │   │   ├── dual_bank_ant_s210
│   │   │   │   │   ├── arm4
│   │   │   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s210.uvgui
│   │   │   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s210.uvopt
│   │   │   │   │   │   └── dfu_experimental_dual_bank_ant_pca10028_s210.uvproj
│   │   │   │   │   └── arm5_no_packs
│   │   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s210.uvguix
│   │   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s210.uvoptx
│   │   │   │   │   └── dfu_experimental_dual_bank_ant_pca10028_s210.uvprojx
│   │   │   │   └── dual_bank_ant_s310
│   │   │   │   ├── arm4
│   │   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s310.uvgui
│   │   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s310.uvopt
│   │   │   │   │   └── dfu_experimental_dual_bank_ant_pca10028_s310.uvproj
│   │   │   │   └── arm5_no_packs
│   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s310.uvguix
│   │   │   │   ├── dfu_experimental_dual_bank_ant_pca10028_s310.uvoptx
│   │   │   │   └── dfu_experimental_dual_bank_ant_pca10028_s310.uvprojx
│   │   │   └── version.c
│   │   └── hci_dfu_send_hex
│   │   ├── test_images_dual_bank_update
│   │   │   ├── dfu_test_app_hrm_s110.hex
│   │   │   ├── dfu_test_app_hrm_s110.zip
│   │   │   ├── dfu_test_app_hrm_s130.hex
│   │   │   ├── dfu_test_app_hrm_s130.zip
│   │   │   ├── dfu_test_bootloader_b_hci.hex
│   │   │   ├── dfu_test_bootloader_b_hci.zip
│   │   │   ├── dfu_test_softdevice_b.hex
│   │   │   ├── dfu_test_softdevice_b.zip
│   │   │   ├── dfu_test_softdevice_w_bootloader_b_hci.hex
│   │   │   └── dfu_test_softdevice_w_bootloader_b_hci.zip
│   │   └── test_images_single_bank_update
│   │   ├── dfu_test_app_hrm_s110.hex
│   │   ├── dfu_test_app_hrm_s110.zip
│   │   ├── dfu_test_app_hrm_s130.hex
│   │   ├── dfu_test_app_hrm_s130.zip
│   │   ├── dfu_test_bootloader_b_hci.hex
│   │   ├── dfu_test_bootloader_b_hci.zip
│   │   ├── dfu_test_softdevice_b.hex
│   │   ├── dfu_test_softdevice_b.zip
│   │   ├── dfu_test_softdevice_w_bootloader_b_hci.hex
│   │   └── dfu_test_softdevice_w_bootloader_b_hci.zip
│   ├── peripheral
│   │   ├── adc_simple
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── simple_adc_pca10028.uvopt
│   │   │   │   │   └── simple_adc_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── simple_adc_pca10028.uvoptx
│   │   │   │   │   └── simple_adc_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── simple_adc_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── simple_adc_iar_nrf51.icf
│   │   │   │   ├── simple_adc_pca10028.ewd
│   │   │   │   └── simple_adc_pca10028.ewp
│   │   │   ├── simple_adc.eww
│   │   │   └── simple_adc.uvmpw
│   │   ├── blinky
│   │   │   ├── Abstract.txt
│   │   │   ├── blinky.eww
│   │   │   ├── blinky.uvmpw
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── blank
│   │   │   │   │   ├── arm4
│   │   │   │   │   │   ├── blinky_blank_pca10028.uvopt
│   │   │   │   │   │   └── blinky_blank_pca10028.uvproj
│   │   │   │   │   ├── arm5_no_packs
│   │   │   │   │   │   ├── blinky_blank_pca10028.uvoptx
│   │   │   │   │   │   └── blinky_blank_pca10028.uvprojx
│   │   │   │   │   ├── armgcc
│   │   │   │   │   │   ├── blinky_gcc_nrf51.ld
│   │   │   │   │   │   └── Makefile
│   │   │   │   │   └── iar
│   │   │   │   │   ├── blinky_blank_pca10028.ewd
│   │   │   │   │   ├── blinky_blank_pca10028.ewp
│   │   │   │   │   └── blinky_iar_nrf51.icf
│   │   │   │   └── s110
│   │   │   │   ├── arm4
│   │   │   │   │   ├── blinky_s110_pca10028.uvgui
│   │   │   │   │   ├── blinky_s110_pca10028.uvopt
│   │   │   │   │   └── blinky_s110_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── blinky_s110_pca10028.uvguix
│   │   │   │   │   ├── blinky_s110_pca10028.uvoptx
│   │   │   │   │   └── blinky_s110_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── blinky_gcc_nrf51.ld
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── blinky_iar_nrf51.icf
│   │   │   │   ├── blinky_s110_pca10028.ewd
│   │   │   │   └── blinky_s110_pca10028.ewp
│   │   │   └── pca10031
│   │   │   ├── blank
│   │   │   │   ├── arm4
│   │   │   │   │   ├── blinky_blank_pca10031.uvopt
│   │   │   │   │   └── blinky_blank_pca10031.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── blinky_blank_pca10031.uvoptx
│   │   │   │   │   └── blinky_blank_pca10031.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── blinky_gcc_nrf51.ld
│   │   │   │   │   └── Makefile
│   │   │   │   └── iar
│   │   │   │   ├── blinky_blank_pca10031.ewd
│   │   │   │   ├── blinky_blank_pca10031.ewp
│   │   │   │   └── blinky_iar_nrf51.icf
│   │   │   └── s110
│   │   │   ├── arm4
│   │   │   │   ├── blinky_s110_pca10031.uvgui
│   │   │   │   ├── blinky_s110_pca10031.uvopt
│   │   │   │   └── blinky_s110_pca10031.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── blinky_s110_pca10031.uvguix
│   │   │   │   ├── blinky_s110_pca10031.uvoptx
│   │   │   │   └── blinky_s110_pca10031.uvprojx
│   │   │   ├── armgcc
│   │   │   │   ├── blinky_gcc_nrf51.ld
│   │   │   │   └── Makefile
│   │   │   └── iar
│   │   │   ├── blinky_iar_nrf51.icf
│   │   │   ├── blinky_s110_pca10031.ewd
│   │   │   └── blinky_s110_pca10031.ewp
│   │   ├── blinky_rtx
│   │   │   ├── Abstract.txt
│   │   │   ├── blinky_rtx.uvmpw
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── blinky_rtx_pca10028.uvopt
│   │   │   │   │   └── blinky_rtx_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── blinky_rtx_pca10028.uvoptx
│   │   │   │   │   └── blinky_rtx_pca10028.uvprojx
│   │   │   │   └── armgcc
│   │   │   │   ├── blinky_rtx_gcc_nrf51.ld
│   │   │   │   └── Makefile
│   │   │   ├── RTX_Conf_CM.c
│   │   │   └── settings
│   │   │   ├── blinkyRTX.wsdt
│   │   │   └── blinkyRTX.wspos
│   │   ├── bsp
│   │   │   ├── Abstract.txt
│   │   │   ├── bsp.eww
│   │   │   ├── bsp.uvmpw
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   └── pca10028
│   │   │   ├── arm4
│   │   │   │   ├── bsp_pca10028.uvopt
│   │   │   │   └── bsp_pca10028.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── bsp_pca10028.uvoptx
│   │   │   │   └── bsp_pca10028.uvprojx
│   │   │   ├── armgcc
│   │   │   │   ├── bsp_gcc_nrf51.ld
│   │   │   │   └── Makefile
│   │   │   └── iar
│   │   │   ├── bsp_iar_nrf51.icf
│   │   │   ├── bsp_pca10028.ewd
│   │   │   └── bsp_pca10028.ewp
│   │   ├── clock
│   │   │   ├── Abstract.txt
│   │   │   ├── clock.eww
│   │   │   ├── clock.uvmpw
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   └── pca10028
│   │   │   ├── arm4
│   │   │   │   ├── clock_pca10028.uvopt
│   │   │   │   └── clock_pca10028.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── clock_pca10028.uvoptx
│   │   │   │   └── clock_pca10028.uvprojx
│   │   │   ├── armgcc
│   │   │   │   ├── clock_gcc_nrf51.ld
│   │   │   │   └── Makefile
│   │   │   └── iar
│   │   │   ├── clock_iar_nrf51.icf
│   │   │   ├── clock_pca10028.ewd
│   │   │   └── clock_pca10028.ewp
│   │   ├── flashwrite
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── flashwrite.eww
│   │   │   ├── flashwrite.uvmpw
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   └── pca10028
│   │   │   ├── arm4
│   │   │   │   ├── flashwrite_pca10028.uvopt
│   │   │   │   └── flashwrite_pca10028.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── flashwrite_pca10028.uvoptx
│   │   │   │   └── flashwrite_pca10028.uvprojx
│   │   │   ├── armgcc
│   │   │   │   ├── flashwrite_gcc_nrf51.ld
│   │   │   │   └── Makefile
│   │   │   └── iar
│   │   │   ├── flashwrite_iar_nrf51.icf
│   │   │   ├── flashwrite_pca10028.ewd
│   │   │   └── flashwrite_pca10028.ewp
│   │   ├── gpiote
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── gpiote.eww
│   │   │   ├── gpiote.uvmpw
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   └── pca10028
│   │   │   ├── arm4
│   │   │   │   ├── gpiote_pca10028.uvopt
│   │   │   │   └── gpiote_pca10028.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── gpiote_pca10028.uvoptx
│   │   │   │   └── gpiote_pca10028.uvprojx
│   │   │   ├── armgcc
│   │   │   │   ├── gpiote_gcc_nrf51.ld
│   │   │   │   └── Makefile
│   │   │   └── iar
│   │   │   ├── gpiote_iar_nrf51.icf
│   │   │   ├── gpiote_pca10028.ewd
│   │   │   └── gpiote_pca10028.ewp
│   │   ├── lpcomp
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── lpcomp.eww
│   │   │   ├── lpcomp.uvmpw
│   │   │   ├── main.c
│   │   │   └── pca10028
│   │   │   ├── arm4
│   │   │   │   ├── lpcomp_pca10028.uvopt
│   │   │   │   └── lpcomp_pca10028.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── lpcomp_pca10028.uvoptx
│   │   │   │   └── lpcomp_pca10028.uvprojx
│   │   │   ├── armgcc
│   │   │   │   ├── lpcomp_gcc_nrf51.ld
│   │   │   │   └── Makefile
│   │   │   └── iar
│   │   │   ├── lpcomp_iar_nrf51.icf
│   │   │   ├── lpcomp_pca10028.ewd
│   │   │   └── lpcomp_pca10028.ewp
│   │   ├── pin_change_int
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── pin_change_int_pca10028.uvopt
│   │   │   │   │   └── pin_change_int_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── pin_change_int_pca10028.uvoptx
│   │   │   │   │   └── pin_change_int_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── pin_change_int_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── pin_change_int_iar_nrf51.icf
│   │   │   │   ├── pin_change_int_pca10028.ewd
│   │   │   │   └── pin_change_int_pca10028.ewp
│   │   │   ├── pin_change_int.eww
│   │   │   └── pin_change_int.uvmpw
│   │   ├── ppi
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── ppi_pca10028.uvopt
│   │   │   │   │   └── ppi_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── ppi_pca10028.uvoptx
│   │   │   │   │   └── ppi_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── ppi_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── ppi_iar_nrf51.icf
│   │   │   │   ├── ppi_pca10028.ewd
│   │   │   │   └── ppi_pca10028.ewp
│   │   │   ├── ppi.eww
│   │   │   └── ppi.uvmpw
│   │   ├── pwm
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── pwm_pca10028.uvopt
│   │   │   │   │   └── pwm_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── pwm_pca10028.uvoptx
│   │   │   │   │   └── pwm_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── pwm_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── pwm_iar_nrf51.icf
│   │   │   │   ├── pwm_pca10028.ewd
│   │   │   │   └── pwm_pca10028.ewp
│   │   │   ├── pwm.eww
│   │   │   └── pwm.uvmpw
│   │   ├── qdec
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── qdec_example_pca10028.uvopt
│   │   │   │   │   └── qdec_example_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── qdec_example_pca10028.uvoptx
│   │   │   │   │   └── qdec_example_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── qdec_example_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── qdec_example_iar_nrf51.icf
│   │   │   │   ├── qdec_example_pca10028.ewd
│   │   │   │   └── qdec_example_pca10028.ewp
│   │   │   ├── qdec_example.eww
│   │   │   ├── qdec_example.uvmpw
│   │   │   ├── qenc_sim.c
│   │   │   └── qenc_sim.h
│   │   ├── radio
│   │   │   ├── receiver
│   │   │   │   ├── Abstract.txt
│   │   │   │   ├── config
│   │   │   │   │   └── nrf_drv_config.h
│   │   │   │   ├── license.txt
│   │   │   │   ├── main.c
│   │   │   │   ├── pca10028
│   │   │   │   │   ├── arm4
│   │   │   │   │   │   ├── receiver_pca10028.uvopt
│   │   │   │   │   │   └── receiver_pca10028.uvproj
│   │   │   │   │   ├── arm5_no_packs
│   │   │   │   │   │   ├── receiver_pca10028.uvoptx
│   │   │   │   │   │   └── receiver_pca10028.uvprojx
│   │   │   │   │   ├── armgcc
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   └── receiver_gcc_nrf51.ld
│   │   │   │   │   └── iar
│   │   │   │   │   ├── receiver_iar_nrf51.icf
│   │   │   │   │   ├── receiver_pca10028.ewd
│   │   │   │   │   └── receiver_pca10028.ewp
│   │   │   │   ├── pca10031
│   │   │   │   │   ├── arm4
│   │   │   │   │   │   ├── receiver_pca10031.uvopt
│   │   │   │   │   │   └── receiver_pca10031.uvproj
│   │   │   │   │   ├── arm5_no_packs
│   │   │   │   │   │   ├── receiver_pca10031.uvoptx
│   │   │   │   │   │   └── receiver_pca10031.uvprojx
│   │   │   │   │   ├── armgcc
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   └── receiver_gcc_nrf51.ld
│   │   │   │   │   └── iar
│   │   │   │   │   ├── receiver_iar_nrf51.icf
│   │   │   │   │   ├── receiver_pca10031.ewd
│   │   │   │   │   └── receiver_pca10031.ewp
│   │   │   │   ├── receiver.eww
│   │   │   │   └── receiver.uvmpw
│   │   │   └── transmitter
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── transmitter_pca10028.uvopt
│   │   │   │   │   └── transmitter_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── transmitter_pca10028.uvoptx
│   │   │   │   │   └── transmitter_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── transmitter_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── transmitter_iar_nrf51.icf
│   │   │   │   ├── transmitter_pca10028.ewd
│   │   │   │   └── transmitter_pca10028.ewp
│   │   │   ├── transmitter.eww
│   │   │   └── transmitter.uvmpw
│   │   ├── radio_test
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── radio_test_pca10028.uvopt
│   │   │   │   │   └── radio_test_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── radio_test_pca10028.uvoptx
│   │   │   │   │   └── radio_test_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── radio_test_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── radio_test_iar_nrf51.icf
│   │   │   │   ├── radio_test_pca10028.ewd
│   │   │   │   └── radio_test_pca10028.ewp
│   │   │   ├── radio_test.c
│   │   │   ├── radio_test.eww
│   │   │   ├── radio_test.h
│   │   │   └── radio_test.uvmpw
│   │   ├── ram_retention
│   │   │   ├── Abstract.txt
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── ram_retention_pca10028.uvopt
│   │   │   │   │   └── ram_retention_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── ram_retention_pca10028.uvoptx
│   │   │   │   │   └── ram_retention_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── ram_retention_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── ram_retention_iar_nrf51.icf
│   │   │   │   ├── ram_retention_pca10028.ewd
│   │   │   │   └── ram_retention_pca10028.ewp
│   │   │   ├── ram_retention.eww
│   │   │   └── ram_retention.uvmpw
│   │   ├── rng
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── blank
│   │   │   │   │   ├── arm4
│   │   │   │   │   │   ├── rng_pca10028.uvopt
│   │   │   │   │   │   └── rng_pca10028.uvproj
│   │   │   │   │   ├── arm5_no_packs
│   │   │   │   │   │   ├── rng_pca10028.uvoptx
│   │   │   │   │   │   └── rng_pca10028.uvprojx
│   │   │   │   │   ├── armgcc
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   └── rng_gcc_nrf51.ld
│   │   │   │   │   └── iar
│   │   │   │   │   ├── rng_iar_nrf51.icf
│   │   │   │   │   ├── rng_pca10028.ewd
│   │   │   │   │   └── rng_pca10028.ewp
│   │   │   │   └── s110
│   │   │   │   ├── arm4
│   │   │   │   │   ├── rng_s110_pca10028.uvgui
│   │   │   │   │   ├── rng_s110_pca10028.uvopt
│   │   │   │   │   └── rng_s110_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── rng_s110_pca10028.uvguix
│   │   │   │   │   ├── rng_s110_pca10028.uvoptx
│   │   │   │   │   └── rng_s110_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── rng_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── rng_iar_nrf51.icf
│   │   │   │   ├── rng_s110_pca10028.ewd
│   │   │   │   └── rng_s110_pca10028.ewp
│   │   │   ├── rng.eww
│   │   │   └── rng.uvmpw
│   │   ├── rtc
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── rtc_pca10028.uvopt
│   │   │   │   │   └── rtc_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── rtc_pca10028.uvoptx
│   │   │   │   │   └── rtc_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── rtc_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── rtc_iar_nrf51.icf
│   │   │   │   ├── rtc_pca10028.ewd
│   │   │   │   └── rtc_pca10028.ewp
│   │   │   ├── rtc.eww
│   │   │   └── rtc.uvmpw
│   │   ├── simple_timer
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── simple_timer_pca10028.uvopt
│   │   │   │   │   └── simple_timer_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── simple_timer_pca10028.uvoptx
│   │   │   │   │   └── simple_timer_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── simple_timer_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── simple_timer_iar_nrf51.icf
│   │   │   │   ├── simple_timer_pca10028.ewd
│   │   │   │   └── simple_timer_pca10028.ewp
│   │   │   ├── simple_timer.eww
│   │   │   └── simple_timer.uvmpw
│   │   ├── spi_master
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── spi_master_pca10028.uvopt
│   │   │   │   │   └── spi_master_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── spi_master_pca10028.uvoptx
│   │   │   │   │   └── spi_master_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── spi_master_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── spi_master_iar_nrf51.icf
│   │   │   │   ├── spi_master_pca10028.ewd
│   │   │   │   └── spi_master_pca10028.ewp
│   │   │   ├── spi_master.eww
│   │   │   └── spi_master.uvmpw
│   │   ├── spi_master_with_spi_slave
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── spi_master_with_spi_slave_pca10028.uvopt
│   │   │   │   │   └── spi_master_with_spi_slave_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── spi_master_with_spi_slave_pca10028.uvoptx
│   │   │   │   │   └── spi_master_with_spi_slave_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── spi_master_with_spi_slave_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── spi_master_with_spi_slave_iar_nrf51.icf
│   │   │   │   ├── spi_master_with_spi_slave_pca10028.ewd
│   │   │   │   └── spi_master_with_spi_slave_pca10028.ewp
│   │   │   ├── spi_master_with_spi_slave.eww
│   │   │   └── spi_master_with_spi_slave.uvmpw
│   │   ├── spi_slave
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── spi_slave_pca10028.uvopt
│   │   │   │   │   └── spi_slave_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── spi_slave_pca10028.uvoptx
│   │   │   │   │   └── spi_slave_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── spi_slave_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── spi_slave_iar_nrf51.icf
│   │   │   │   ├── spi_slave_pca10028.ewd
│   │   │   │   └── spi_slave_pca10028.ewp
│   │   │   ├── spi_slave.eww
│   │   │   ├── spi_slave_example.c
│   │   │   ├── spi_slave_example.h
│   │   │   └── spi_slave.uvmpw
│   │   ├── temperature
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── temperature_pca10028.uvopt
│   │   │   │   │   └── temperature_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── temperature_pca10028.uvoptx
│   │   │   │   │   └── temperature_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── temperature_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── temperature_iar_nrf51.icf
│   │   │   │   ├── temperature_pca10028.ewd
│   │   │   │   └── temperature_pca10028.ewp
│   │   │   ├── temperature.eww
│   │   │   └── temperature.uvmpw
│   │   ├── template_project
│   │   │   ├── Abstract.txt
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── template_pca10028.uvopt
│   │   │   │   │   └── template_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── template_pca10028.uvoptx
│   │   │   │   │   └── template_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── template_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── template_iar_nrf51.icf
│   │   │   │   ├── template_pca10028.ewd
│   │   │   │   └── template_pca10028.ewp
│   │   │   ├── template.eww
│   │   │   └── template.uvmpw
│   │   ├── timer
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── timer_pca10028.uvopt
│   │   │   │   │   └── timer_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── timer_pca10028.uvoptx
│   │   │   │   │   └── timer_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── timer_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── timer_iar_nrf51.icf
│   │   │   │   ├── timer_pca10028.ewd
│   │   │   │   └── timer_pca10028.ewp
│   │   │   ├── timer.eww
│   │   │   └── timer.uvmpw
│   │   ├── uart
│   │   │   ├── Abstract.txt
│   │   │   ├── config
│   │   │   │   └── nrf_drv_config.h
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── uart_pca10028.uvopt
│   │   │   │   │   └── uart_pca10028.uvproj
│   │   │   │   ├── arm5_no_packs
│   │   │   │   │   ├── uart_pca10028.uvoptx
│   │   │   │   │   └── uart_pca10028.uvprojx
│   │   │   │   ├── armgcc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   └── uart_gcc_nrf51.ld
│   │   │   │   └── iar
│   │   │   │   ├── uart_iar_nrf51.icf
│   │   │   │   ├── uart_pca10028.ewd
│   │   │   │   └── uart_pca10028.ewp
│   │   │   ├── uart.eww
│   │   │   └── uart.uvmpw
│   │   ├── uicr_config
│   │   │   ├── Abstract.txt
│   │   │   ├── license.txt
│   │   │   ├── main.c
│   │   │   ├── pca10028
│   │   │   │   ├── arm4
│   │   │   │   │   ├── uicr_config_pca10028.uvopt
│   │   │   │   │   └── uicr_config_pca10028.uvproj
│   │   │   │   └── arm5_no_packs
│   │   │   │   ├── uicr_config_pca10028.uvoptx
│   │   │   │   └── uicr_config_pca10028.uvprojx
│   │   │   ├── uicr_config.h
│   │   │   └── uicr_config.uvmpw
│   │   └── wdt
│   │   ├── Abstract.txt
│   │   ├── config
│   │   │   └── nrf_drv_config.h
│   │   ├── license.txt
│   │   ├── main.c
│   │   ├── pca10028
│   │   │   ├── arm4
│   │   │   │   ├── wdt_pca10028.uvopt
│   │   │   │   └── wdt_pca10028.uvproj
│   │   │   ├── arm5_no_packs
│   │   │   │   ├── wdt_pca10028.uvoptx
│   │   │   │   └── wdt_pca10028.uvprojx
│   │   │   ├── armgcc
│   │   │   │   ├── Makefile
│   │   │   │   └── wdt_gcc_nrf51.ld
│   │   │   └── iar
│   │   │   ├── wdt_iar_nrf51.icf
│   │   │   ├── wdt_pca10028.ewd
│   │   │   └── wdt_pca10028.ewp
│   │   ├── wdt.eww
│   │   └── wdt.uvmpw
│   └── readme.txt
├── external
│   └── rtx
│   ├── include
│   │   ├── cmsis_os.h
│   │   └── RTX_CM_lib.h
│   ├── License.txt
│   ├── port
│   │   └── RTX_Conf_CM.c
│   └── source
│   ├── ARM
│   │   ├── RTX_CM0_B.lib
│   │   ├── RTX_CM0.lib
│   │   ├── RTX_CM3_B.lib
│   │   ├── RTX_CM3_IFX.lib
│   │   ├── RTX_CM3.lib
│   │   ├── RTX_CM4_B.lib
│   │   ├── RTX_CM4_IFX.lib
│   │   └── RTX_CM4.lib
│   ├── GCC
│   │   ├── libRTX_CM0.a
│   │   ├── libRTX_CM0_B.a
│   │   ├── libRTX_CM3.a
│   │   ├── libRTX_CM3_B.a
│   │   ├── libRTX_CM3_IFX.a
│   │   ├── libRTX_CM4.a
│   │   ├── libRTX_CM4_B.a
│   │   └── libRTX_CM4_IFX.a
│   ├── HAL_CM.c
│   ├── IAR
│   │   ├── RTX_CM0.a
│   │   ├── RTX_CM0_B.a
│   │   ├── RTX_CM3.a
│   │   ├── RTX_CM3_B.a
│   │   ├── RTX_CM4.a
│   │   └── RTX_CM4_B.a
│   ├── rt_CMSIS.c
│   ├── rt_Event.c
│   ├── rt_Event.h
│   ├── rt_HAL_CM.h
│   ├── rt_List.c
│   ├── rt_List.h
│   ├── rt_Mailbox.c
│   ├── rt_Mailbox.h
│   ├── rt_MemBox.c
│   ├── rt_MemBox.h
│   ├── rt_Memory.c
│   ├── rt_Memory.h
│   ├── rt_Mutex.c
│   ├── rt_Mutex.h
│   ├── rt_Robin.c
│   ├── rt_Robin.h
│   ├── rt_Semaphore.c
│   ├── rt_Semaphore.h
│   ├── rt_System.c
│   ├── rt_System.h
│   ├── rt_Task.c
│   ├── rt_Task.h
│   ├── rt_Time.c
│   ├── rt_Time.h
│   ├── rt_Timer.c
│   ├── rt_Timer.h
│   ├── rt_TypeDef.h
│   └── RTX_Config.h
├── nRF51_SDK_9.0.0_2e23562.zip
├── nRF5x_MDK_8_0_3_IAR.msi
├── nRF5x_MDK_8_0_3_Keil4.msi
└── SVD
└── nrf51.xml

540 directories, 2327 files

标签:

实例下载地址

NRF51822_SDK9.0 DFU移植笔记

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警