实例介绍
1基于两个nrf51822之间的通信测试(已经调通) 2.一个nrf51822和一个nrf24le之间的通信测试(已经调通)
【实例截图】
【核心代码】
fe1d7d7a-ca10-4256-bbbe-fc9875d6fe6e
└── 2.4无线调通
├── NRF24L01_中文.pdf
├── nRF24LE1_Product_Specification_rev1_6.pdf
├── nRF51_Series_Reference_Manual_v2.1.pdf
├── Product_Specification_nRF24E1_1_3.pdf
├── RFID_TX
│ ├── API.H
│ ├── hal_pof.c
│ ├── hal_pof.h
│ ├── hal_pof.LST
│ ├── hal_pof.OBJ
│ ├── hal_wdog.c
│ ├── hal_wdog.h
│ ├── hal_wdog.LST
│ ├── hal_wdog.OBJ
│ ├── Main.c
│ ├── Main.LST
│ ├── Main.OBJ
│ ├── nordic_common.h
│ ├── nRF24LE1
│ ├── nRF24LE1.build_log.htm
│ ├── nRF24LE1.hex
│ ├── nRF24LE1.lnp
│ ├── nRF24LE1.MAP
│ ├── nRF24LE1-nrf.xml
│ ├── nRF24LE1.opt.bak
│ ├── nRF24LE1_Opt.Bak
│ ├── nRF24LE1.plg
│ ├── nRF24LE1.SBR
│ ├── nRF24LE1.Uv2.bak
│ ├── nRF24LE1_Uv2.Bak
│ ├── nRF24LE1.uvgui.Administrator
│ ├── nRF24LE1.uvgui.David
│ ├── nRF24LE1.uvgui_David.bak
│ ├── nRF24LE1.uvopt
│ ├── nRF24LE1_uvopt.bak
│ ├── nRF24LE1.uvproj
│ ├── nRF24LE1_uvproj.bak
│ ├── reg24le1.h
│ ├── STARTUP.A51
│ ├── STARTUP.LST
│ ├── STARTUP.OBJ
│ ├── stdbool.h
│ └── stdint.h
├── 【原创】讯联电子nRF51822实战教程--2.4G无线通讯(1).pdf
├── 发射端
│ ├── arm
│ │ ├── _build
│ │ │ ├── arm_startup_nrf51.d
│ │ │ ├── arm_startup_nrf51.lst
│ │ │ ├── arm_startup_nrf51.o
│ │ │ ├── button_radio_tx_example.axf
│ │ │ ├── button_radio_tx_example.build_log.htm
│ │ │ ├── button_radio_tx_example.fed
│ │ │ ├── button_radio_tx_example.hex
│ │ │ ├── button_radio_tx_example.htm
│ │ │ ├── button_radio_tx_example.l2p
│ │ │ ├── button_radio_tx_example.lnp
│ │ │ ├── button_radio_tx_example.map
│ │ │ ├── button_radio_tx_example.sct
│ │ │ ├── main_tx._2i
│ │ │ ├── main_tx.crf
│ │ │ ├── main_tx.d
│ │ │ ├── main_tx.o
│ │ │ ├── nrf_delay._2i
│ │ │ ├── nrf_delay.crf
│ │ │ ├── nrf_delay.d
│ │ │ ├── nrf_delay.o
│ │ │ ├── radio_config._2i
│ │ │ ├── radio_config.crf
│ │ │ ├── radio_config.d
│ │ │ ├── radio_config.o
│ │ │ ├── simple_uart._2i
│ │ │ ├── simple_uart.crf
│ │ │ ├── simple_uart.d
│ │ │ ├── simple_uart.o
│ │ │ ├── system_nrf51._2i
│ │ │ ├── system_nrf51.crf
│ │ │ ├── system_nrf51.d
│ │ │ └── system_nrf51.o
│ │ ├── button_radio_example_tx_nrf51822_xxaa (256K).dep
│ │ ├── button_radio_example_tx.uvgui.Administrator
│ │ ├── button_radio_example_tx.uvgui_Administrator.bak
│ │ ├── button_radio_example_tx.uvopt
│ │ ├── button_radio_example_tx.uvoptx
│ │ ├── button_radio_example_tx.uvproj
│ │ ├── button_radio_example_tx.uvprojx
│ │ ├── JLinkLog.txt
│ │ └── JLinkSettings.ini
│ ├── arm_startup_nrf51.s
│ ├── include
│ │ ├── app_common
│ │ │ ├── app_button.h
│ │ │ ├── app_error.h
│ │ │ ├── app_fifo.h
│ │ │ ├── app_gpiote.h
│ │ │ ├── app_scheduler.h
│ │ │ ├── app_timer.h
│ │ │ ├── app_trace.h
│ │ │ ├── app_uart.h
│ │ │ ├── app_util.h
│ │ │ ├── crc16.h
│ │ │ ├── hal_transport.h
│ │ │ ├── hci_mem_pool.h
│ │ │ ├── hci_mem_pool_internal.h
│ │ │ ├── hci_slip.h
│ │ │ ├── hci_transport.h
│ │ │ └── pstorage.h
│ │ ├── ble
│ │ │ ├── ble_advdata.h
│ │ │ ├── ble_advdata_parser.h
│ │ │ ├── ble_central_bondmngr.h
│ │ │ ├── ble_conn_params.h
│ │ │ ├── ble_date_time.h
│ │ │ ├── ble_db_discovery.h
│ │ │ ├── ble_debug_assert_handler.h
│ │ │ ├── ble_dtm.h
│ │ │ ├── ble_error_log.h
│ │ │ ├── ble_flash.h
│ │ │ ├── ble_racp.h
│ │ │ ├── ble_radio_notification.h
│ │ │ ├── ble_sensorsim.h
│ │ │ ├── ble_services
│ │ │ │ ├── ble_ans_c.h
│ │ │ │ ├── ble_bas_c.h
│ │ │ │ ├── ble_bas.h
│ │ │ │ ├── ble_bps.h
│ │ │ │ ├── ble_cscs.h
│ │ │ │ ├── ble_dfu.h
│ │ │ │ ├── ble_dis.h
│ │ │ │ ├── ble_gls_db.h
│ │ │ │ ├── ble_gls.h
│ │ │ │ ├── ble_hids.h
│ │ │ │ ├── ble_hrs_c.h
│ │ │ │ ├── ble_hrs.h
│ │ │ │ ├── ble_hts.h
│ │ │ │ ├── ble_ias_c.h
│ │ │ │ ├── ble_ias.h
│ │ │ │ ├── ble_lls.h
│ │ │ │ ├── ble_rscs.h
│ │ │ │ ├── ble_sc_ctrlpt.h
│ │ │ │ ├── ble_sensor_location.h
│ │ │ │ ├── ble_srv_common.h
│ │ │ │ └── ble_tps.h
│ │ │ └── device_manager
│ │ │ └── device_manager.h
│ │ ├── boards
│ │ │ ├── nrf6310.h
│ │ │ ├── pca10000.h
│ │ │ ├── pca10001.h
│ │ │ └── pca10003.h
│ │ ├── boards.h
│ │ ├── bootloader_dfu
│ │ │ ├── ble_transport
│ │ │ │ └── hci_mem_pool_internal.h
│ │ │ ├── bootloader.h
│ │ │ ├── bootloader_settings.h
│ │ │ ├── bootloader_types.h
│ │ │ ├── bootloader_util.h
│ │ │ ├── dfu_app_handler.h
│ │ │ ├── dfu_bank_internal.h
│ │ │ ├── dfu.h
│ │ │ ├── dfu_transport.h
│ │ │ ├── dfu_types.h
│ │ │ └── hci_transport
│ │ │ ├── hci_mem_pool_internal.h
│ │ │ └── hci_transport_config.h
│ │ ├── common.h
│ │ ├── compiler_abstraction.h
│ │ ├── console.h
│ │ ├── esb
│ │ │ ├── nrf_esb_constants.h
│ │ │ └── nrf_esb.h
│ │ ├── ext_sensors
│ │ │ ├── adns2080.h
│ │ │ ├── cherry8x16.h
│ │ │ ├── ds1624.h
│ │ │ ├── mpu6050.h
│ │ │ ├── nrf6350.h
│ │ │ ├── sdio.h
│ │ │ └── synaptics_touchpad.h
│ │ ├── gzll
│ │ │ ├── nrf_gzll_constants.h
│ │ │ └── nrf_gzll.h
│ │ ├── gzp
│ │ │ └── nrf_gzp.h
│ │ ├── nordic_common.h
│ │ ├── nrf51_bitfields.h
│ │ ├── nrf51_deprecated.h
│ │ ├── nrf51.h
│ │ ├── nrf_assert.h
│ │ ├── nrf_delay.h
│ │ ├── nrf_ecb.h
│ │ ├── nrf_gpio.h
│ │ ├── nrf_gpiote.h
│ │ ├── nrf.h
│ │ ├── nrf_nvmc.h
│ │ ├── nrf_temp.h
│ │ ├── s110
│ │ │ ├── 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_sdm.h
│ │ │ ├── nrf_soc.h
│ │ │ ├── nrf_svc.h
│ │ │ └── softdevice_assert.h
│ │ ├── s120
│ │ │ ├── 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_sdm.h
│ │ │ ├── nrf_soc.h
│ │ │ ├── nrf_svc.h
│ │ │ └── softdevice_assert.h
│ │ ├── sd_common
│ │ │ ├── ant_stack_handler_types.h
│ │ │ ├── app_util_platform.h
│ │ │ ├── ble_stack_handler_types.h
│ │ │ └── softdevice_handler.h
│ │ ├── sdk
│ │ │ ├── sdk_common.h
│ │ │ ├── sdk_errors.h
│ │ │ └── sdk_os.h
│ │ ├── sdk_soc
│ │ │ ├── app_util_platform.h
│ │ │ ├── nrf_error.h
│ │ │ └── nrf_soc.h
│ │ ├── serialization
│ │ │ ├── application
│ │ │ │ ├── codecs
│ │ │ │ │ ├── common
│ │ │ │ │ │ └── ble_dtm_app.h
│ │ │ │ │ └── s110
│ │ │ │ │ └── serializers
│ │ │ │ │ ├── ble_app.h
│ │ │ │ │ ├── ble_evt_app.h
│ │ │ │ │ ├── ble_gap_app.h
│ │ │ │ │ ├── ble_gap_evt_app.h
│ │ │ │ │ ├── ble_gattc_app.h
│ │ │ │ │ ├── ble_gattc_evt_app.h
│ │ │ │ │ ├── ble_gatts_app.h
│ │ │ │ │ ├── ble_gatts_evt_app.h
│ │ │ │ │ ├── ble_l2cap_app.h
│ │ │ │ │ ├── ble_l2cap_evt_app.h
│ │ │ │ │ └── nrf_soc_app.h
│ │ │ │ └── transport
│ │ │ │ ├── app_mailbox.h
│ │ │ │ ├── ser_app_hal.h
│ │ │ │ ├── ser_app_power_system_off.h
│ │ │ │ ├── ser_phy_config_app_nrf51.h
│ │ │ │ ├── ser_phy_debug_app.h
│ │ │ │ ├── ser_sd_transport.h
│ │ │ │ └── spi_5W_master.h
│ │ │ ├── common
│ │ │ │ ├── ble_serialization.h
│ │ │ │ ├── cond_field_serialization.h
│ │ │ │ ├── ser_config.h
│ │ │ │ ├── struct_ser
│ │ │ │ │ └── s110
│ │ │ │ │ ├── ble_gap_struct_serialization.h
│ │ │ │ │ ├── ble_gattc_struct_serialization.h
│ │ │ │ │ ├── ble_gatts_struct_serialization.h
│ │ │ │ │ └── ble_struct_serialization.h
│ │ │ │ └── transport
│ │ │ │ ├── dtm_uart_params.h
│ │ │ │ ├── ser_hal_transport.h
│ │ │ │ ├── ser_phy_debug_comm.h
│ │ │ │ ├── ser_phy.h
│ │ │ │ └── ser_phy_hci.h
│ │ │ └── connectivity
│ │ │ ├── app_scheduler.h
│ │ │ ├── codecs
│ │ │ │ ├── common
│ │ │ │ │ └── ble_dtm_conn.h
│ │ │ │ └── s110
│ │ │ │ ├── middleware
│ │ │ │ │ ├── conn_mw_ble_gap.h
│ │ │ │ │ ├── conn_mw_ble_gattc.h
│ │ │ │ │ ├── conn_mw_ble_gatts.h
│ │ │ │ │ ├── conn_mw_ble.h
│ │ │ │ │ ├── conn_mw_ble_l2cap.h
│ │ │ │ │ ├── conn_mw.h
│ │ │ │ │ └── conn_mw_nrf_soc.h
│ │ │ │ └── serializers
│ │ │ │ ├── ble_conn.h
│ │ │ │ ├── ble_evt_conn.h
│ │ │ │ ├── ble_gap_conn.h
│ │ │ │ ├── ble_gap_evt_conn.h
│ │ │ │ ├── ble_gattc_conn.h
│ │ │ │ ├── ble_gattc_evt_conn.h
│ │ │ │ ├── ble_gatts_conn.h
│ │ │ │ ├── ble_gatts_evt_conn.h
│ │ │ │ ├── ble_l2cap_conn.h
│ │ │ │ ├── ble_l2cap_evt_conn.h
│ │ │ │ └── nrf_soc_conn.h
│ │ │ ├── pstorage_platform.h
│ │ │ ├── ser_conn_cmd_decoder.h
│ │ │ ├── ser_conn_dtm_cmd_decoder.h
│ │ │ ├── ser_conn_event_encoder.h
│ │ │ ├── ser_conn_handlers.h
│ │ │ ├── ser_conn_pkt_decoder.h
│ │ │ └── transport
│ │ │ ├── dtm_uart.h
│ │ │ ├── ser_phy_config_conn_nrf51.h
│ │ │ └── ser_phy_debug_conn.h
│ │ ├── simple_uart.h
│ │ ├── spi_master.h
│ │ ├── spi_slave.h
│ │ ├── system_nrf51.h
│ │ └── twi_master.h
│ ├── main_tx.c
│ ├── nrf_delay.c
│ ├── radio_config.c
│ ├── radio_config.h
│ ├── simple_uart.c
│ └── system_nrf51.c
└── 接收端
├── arm
│ ├── _build
│ │ ├── arm_startup_nrf51.d
│ │ ├── arm_startup_nrf51.lst
│ │ ├── arm_startup_nrf51.o
│ │ ├── button_radio_example_rx.axf
│ │ ├── button_radio_example_rx.build_log.htm
│ │ ├── button_radio_example_rx.fed
│ │ ├── button_radio_example_rx.hex
│ │ ├── button_radio_example_rx.htm
│ │ ├── button_radio_example_rx.l2p
│ │ ├── button_radio_example_rx.lnp
│ │ ├── button_radio_example_rx.map
│ │ ├── button_radio_example_rx.sct
│ │ ├── button_radio_example_rx_sct.Bak
│ │ ├── ExtDll.iex
│ │ ├── main_rx._2i
│ │ ├── main_rx.crf
│ │ ├── main_rx.d
│ │ ├── main_rx.o
│ │ ├── nrf_delay._2i
│ │ ├── nrf_delay.crf
│ │ ├── nrf_delay.d
│ │ ├── nrf_delay.o
│ │ ├── radio_config._2i
│ │ ├── radio_config.crf
│ │ ├── radio_config.d
│ │ ├── radio_config.o
│ │ ├── simple_uart._2i
│ │ ├── simple_uart.crf
│ │ ├── simple_uart.d
│ │ ├── simple_uart.o
│ │ ├── system_nrf51._2i
│ │ ├── system_nrf51.crf
│ │ ├── system_nrf51.d
│ │ └── system_nrf51.o
│ ├── button_radio_example_rx_nrf51822_xxaa (256K).dep
│ ├── button_radio_example_rx.uvgui.Administrator
│ ├── button_radio_example_rx.uvgui_Administrator.bak
│ ├── button_radio_example_rx.uvopt
│ ├── button_radio_example_rx.uvoptx
│ ├── button_radio_example_rx.uvproj
│ ├── button_radio_example_rx.uvprojx
│ ├── JLinkLog.txt
│ └── JLinkSettings.ini
├── arm_startup_nrf51.s
├── include
│ ├── app_common
│ │ ├── app_button.h
│ │ ├── app_error.h
│ │ ├── app_fifo.h
│ │ ├── app_gpiote.h
│ │ ├── app_scheduler.h
│ │ ├── app_timer.h
│ │ ├── app_trace.h
│ │ ├── app_uart.h
│ │ ├── app_util.h
│ │ ├── crc16.h
│ │ ├── hal_transport.h
│ │ ├── hci_mem_pool.h
│ │ ├── hci_mem_pool_internal.h
│ │ ├── hci_slip.h
│ │ ├── hci_transport.h
│ │ └── pstorage.h
│ ├── ble
│ │ ├── ble_advdata.h
│ │ ├── ble_advdata_parser.h
│ │ ├── ble_central_bondmngr.h
│ │ ├── ble_conn_params.h
│ │ ├── ble_date_time.h
│ │ ├── ble_db_discovery.h
│ │ ├── ble_debug_assert_handler.h
│ │ ├── ble_dtm.h
│ │ ├── ble_error_log.h
│ │ ├── ble_flash.h
│ │ ├── ble_racp.h
│ │ ├── ble_radio_notification.h
│ │ ├── ble_sensorsim.h
│ │ ├── ble_services
│ │ │ ├── ble_ans_c.h
│ │ │ ├── ble_bas_c.h
│ │ │ ├── ble_bas.h
│ │ │ ├── ble_bps.h
│ │ │ ├── ble_cscs.h
│ │ │ ├── ble_dfu.h
│ │ │ ├── ble_dis.h
│ │ │ ├── ble_gls_db.h
│ │ │ ├── ble_gls.h
│ │ │ ├── ble_hids.h
│ │ │ ├── ble_hrs_c.h
│ │ │ ├── ble_hrs.h
│ │ │ ├── ble_hts.h
│ │ │ ├── ble_ias_c.h
│ │ │ ├── ble_ias.h
│ │ │ ├── ble_lls.h
│ │ │ ├── ble_rscs.h
│ │ │ ├── ble_sc_ctrlpt.h
│ │ │ ├── ble_sensor_location.h
│ │ │ ├── ble_srv_common.h
│ │ │ └── ble_tps.h
│ │ └── device_manager
│ │ └── device_manager.h
│ ├── boards
│ │ ├── nrf6310.h
│ │ ├── pca10000.h
│ │ ├── pca10001.h
│ │ └── pca10003.h
│ ├── boards.h
│ ├── bootloader_dfu
│ │ ├── ble_transport
│ │ │ └── hci_mem_pool_internal.h
│ │ ├── bootloader.h
│ │ ├── bootloader_settings.h
│ │ ├── bootloader_types.h
│ │ ├── bootloader_util.h
│ │ ├── dfu_app_handler.h
│ │ ├── dfu_bank_internal.h
│ │ ├── dfu.h
│ │ ├── dfu_transport.h
│ │ ├── dfu_types.h
│ │ └── hci_transport
│ │ ├── hci_mem_pool_internal.h
│ │ └── hci_transport_config.h
│ ├── common.h
│ ├── compiler_abstraction.h
│ ├── console.h
│ ├── esb
│ │ ├── nrf_esb_constants.h
│ │ └── nrf_esb.h
│ ├── ext_sensors
│ │ ├── adns2080.h
│ │ ├── cherry8x16.h
│ │ ├── ds1624.h
│ │ ├── mpu6050.h
│ │ ├── nrf6350.h
│ │ ├── sdio.h
│ │ └── synaptics_touchpad.h
│ ├── gzll
│ │ ├── nrf_gzll_constants.h
│ │ └── nrf_gzll.h
│ ├── gzp
│ │ └── nrf_gzp.h
│ ├── nordic_common.h
│ ├── nrf51_bitfields.h
│ ├── nrf51_deprecated.h
│ ├── nrf51.h
│ ├── nrf_assert.h
│ ├── nrf_delay.h
│ ├── nrf_ecb.h
│ ├── nrf_gpio.h
│ ├── nrf_gpiote.h
│ ├── nrf.h
│ ├── nrf_nvmc.h
│ ├── nrf_temp.h
│ ├── s110
│ │ ├── 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_sdm.h
│ │ ├── nrf_soc.h
│ │ ├── nrf_svc.h
│ │ └── softdevice_assert.h
│ ├── s120
│ │ ├── 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_sdm.h
│ │ ├── nrf_soc.h
│ │ ├── nrf_svc.h
│ │ └── softdevice_assert.h
│ ├── sd_common
│ │ ├── ant_stack_handler_types.h
│ │ ├── app_util_platform.h
│ │ ├── ble_stack_handler_types.h
│ │ └── softdevice_handler.h
│ ├── sdk
│ │ ├── sdk_common.h
│ │ ├── sdk_errors.h
│ │ └── sdk_os.h
│ ├── sdk_soc
│ │ ├── app_util_platform.h
│ │ ├── nrf_error.h
│ │ └── nrf_soc.h
│ ├── serialization
│ │ ├── application
│ │ │ ├── codecs
│ │ │ │ ├── common
│ │ │ │ │ └── ble_dtm_app.h
│ │ │ │ └── s110
│ │ │ │ └── serializers
│ │ │ │ ├── ble_app.h
│ │ │ │ ├── ble_evt_app.h
│ │ │ │ ├── ble_gap_app.h
│ │ │ │ ├── ble_gap_evt_app.h
│ │ │ │ ├── ble_gattc_app.h
│ │ │ │ ├── ble_gattc_evt_app.h
│ │ │ │ ├── ble_gatts_app.h
│ │ │ │ ├── ble_gatts_evt_app.h
│ │ │ │ ├── ble_l2cap_app.h
│ │ │ │ ├── ble_l2cap_evt_app.h
│ │ │ │ └── nrf_soc_app.h
│ │ │ └── transport
│ │ │ ├── app_mailbox.h
│ │ │ ├── ser_app_hal.h
│ │ │ ├── ser_app_power_system_off.h
│ │ │ ├── ser_phy_config_app_nrf51.h
│ │ │ ├── ser_phy_debug_app.h
│ │ │ ├── ser_sd_transport.h
│ │ │ └── spi_5W_master.h
│ │ ├── common
│ │ │ ├── ble_serialization.h
│ │ │ ├── cond_field_serialization.h
│ │ │ ├── ser_config.h
│ │ │ ├── struct_ser
│ │ │ │ └── s110
│ │ │ │ ├── ble_gap_struct_serialization.h
│ │ │ │ ├── ble_gattc_struct_serialization.h
│ │ │ │ ├── ble_gatts_struct_serialization.h
│ │ │ │ └── ble_struct_serialization.h
│ │ │ └── transport
│ │ │ ├── dtm_uart_params.h
│ │ │ ├── ser_hal_transport.h
│ │ │ ├── ser_phy_debug_comm.h
│ │ │ ├── ser_phy.h
│ │ │ └── ser_phy_hci.h
│ │ └── connectivity
│ │ ├── app_scheduler.h
│ │ ├── codecs
│ │ │ ├── common
│ │ │ │ └── ble_dtm_conn.h
│ │ │ └── s110
│ │ │ ├── middleware
│ │ │ │ ├── conn_mw_ble_gap.h
│ │ │ │ ├── conn_mw_ble_gattc.h
│ │ │ │ ├── conn_mw_ble_gatts.h
│ │ │ │ ├── conn_mw_ble.h
│ │ │ │ ├── conn_mw_ble_l2cap.h
│ │ │ │ ├── conn_mw.h
│ │ │ │ └── conn_mw_nrf_soc.h
│ │ │ └── serializers
│ │ │ ├── ble_conn.h
│ │ │ ├── ble_evt_conn.h
│ │ │ ├── ble_gap_conn.h
│ │ │ ├── ble_gap_evt_conn.h
│ │ │ ├── ble_gattc_conn.h
│ │ │ ├── ble_gattc_evt_conn.h
│ │ │ ├── ble_gatts_conn.h
│ │ │ ├── ble_gatts_evt_conn.h
│ │ │ ├── ble_l2cap_conn.h
│ │ │ ├── ble_l2cap_evt_conn.h
│ │ │ └── nrf_soc_conn.h
│ │ ├── pstorage_platform.h
│ │ ├── ser_conn_cmd_decoder.h
│ │ ├── ser_conn_dtm_cmd_decoder.h
│ │ ├── ser_conn_event_encoder.h
│ │ ├── ser_conn_handlers.h
│ │ ├── ser_conn_pkt_decoder.h
│ │ └── transport
│ │ ├── dtm_uart.h
│ │ ├── ser_phy_config_conn_nrf51.h
│ │ └── ser_phy_debug_conn.h
│ ├── simple_uart.h
│ ├── spi_master.h
│ ├── spi_slave.h
│ ├── system_nrf51.h
│ └── twi_master.h
├── main_rx.c
├── nrf_delay.c
├── radio_config.c
├── radio_config.h
├── simple_uart.c
└── system_nrf51.c
80 directories, 551 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论