在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → NRF51822 Radio2.4G实验

NRF51822 Radio2.4G实验

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.78M
  • 下载次数:1
  • 浏览次数:87
  • 发布时间:2021-11-07
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
RADIO模块说到底就是一个无线通讯模块,这个实验将实现两个开发板之间的通信 这里的一个开发板是BLE400开发板,一个是青风开发板,前者作为接收端,连接串口到PC,后者作为发送端,连接的是JLINK接口,这样想下载程序也很简单,拔开下载跳线帽换上杜包线就行了。 发送端(青风开发板)主函数如下:
【实例截图】
【核心代码】
16359647350152369495.zip
├── Radio2.4G实验1:通信rx
│   ├── Include
│   │   ├── app_common
│   │   │   ├── app_button.h
│   │   │   ├── app_error.h
│   │   │   ├── app_fifo.h
│   │   │   ├── app_gpiote.h
│   │   │   ├── app_scheduler.h
│   │   │   ├── app_timer.h
│   │   │   ├── app_uart.h
│   │   │   ├── app_util.h
│   │   │   ├── crc16.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_bondmngr.h
│   │   │   ├── ble_central_bondmngr.h
│   │   │   ├── ble_conn_params.h
│   │   │   ├── ble_date_time.h
│   │   │   ├── ble_debug_assert_handler.h
│   │   │   ├── ble_dtm.h
│   │   │   ├── ble_error_log.h
│   │   │   ├── ble_flash.h
│   │   │   ├── ble_racp.h
│   │   │   ├── ble_radio_notification.h
│   │   │   ├── ble_sensorsim.h
│   │   │   ├── ble_services
│   │   │   │   ├── ble_ans_c.h
│   │   │   │   ├── ble_bas.h
│   │   │   │   ├── ble_bps.h
│   │   │   │   ├── ble_cscs.h
│   │   │   │   ├── ble_dfu.h
│   │   │   │   ├── ble_dis.h
│   │   │   │   ├── ble_gls_db.h
│   │   │   │   ├── ble_gls.h
│   │   │   │   ├── ble_hids.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
│   │   │   └── rpc
│   │   │   ├── ble_rpc_cmd_decoder_gap.h
│   │   │   ├── ble_rpc_cmd_decoder_gatts.h
│   │   │   ├── ble_rpc_cmd_decoder.h
│   │   │   ├── ble_rpc_cmd_encoder.h
│   │   │   ├── ble_rpc_defines.h
│   │   │   ├── ble_rpc_event_decoder_gap.h
│   │   │   ├── ble_rpc_event_decoder_gatts.h
│   │   │   ├── ble_rpc_event_decoder.h
│   │   │   ├── ble_rpc_event_encoder_gap.h
│   │   │   ├── ble_rpc_event_encoder_gatts.h
│   │   │   ├── ble_rpc_event_encoder.h
│   │   │   └── ble_rpc_pkt_receiver.h
│   │   ├── boards
│   │   │   ├── nrf6310.h
│   │   │   ├── pca10000.h
│   │   │   ├── pca10001.h
│   │   │   ├── pca10003.h
│   │   │   └── pca1000x.h
│   │   ├── boards.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
│   │   ├── gcc
│   │   │   ├── core_cm0.h
│   │   │   ├── core_cmFunc.h
│   │   │   └── core_cmInstr.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_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
│   │   │   ├── ble_stack_handler_types.h
│   │   │   └── softdevice_handler.h
│   │   ├── simple_uart.h
│   │   ├── spi_master.h
│   │   ├── spi_slave.h
│   │   ├── system_nrf51.h
│   │   └── twi_master.h
│   ├── Lib
│   │   ├── esb
│   │   │   ├── arm
│   │   │   │   ├── esb_arm.lib
│   │   │   │   └── esb_sd_resources_arm.lib
│   │   │   └── gcc
│   │   │   ├── esb_gcc.a
│   │   │   └── esb_sd_resources_gcc.a
│   │   └── gzll
│   │   ├── arm
│   │   │   ├── gzll_arm.lib
│   │   │   └── gzll_sd_resources_arm.lib
│   │   └── gcc
│   │   ├── gzll_gcc.a
│   │   └── gzll_sd_resources_gcc.a
│   ├── lp
│   │   ├── delay.c
│   │   ├── delay.h
│   │   ├── led.c
│   │   ├── led.h
│   │   ├── radio_config.c
│   │   ├── radio_config.h
│   │   ├── usart.c
│   │   └── usart.h
│   ├── out
│   │   ├── adc._2i
│   │   ├── adxl345._2i
│   │   ├── arm_startup_nrf51.d
│   │   ├── arm_startup_nrf51.o
│   │   ├── delay._2i
│   │   ├── delay.crf
│   │   ├── delay.d
│   │   ├── delay.o
│   │   ├── exit._2i
│   │   ├── iic._2i
│   │   ├── led._2i
│   │   ├── led.crf
│   │   ├── led.d
│   │   ├── led.o
│   │   ├── logic._2i
│   │   ├── main._2i
│   │   ├── main.axf
│   │   ├── main.build_log.htm
│   │   ├── main.crf
│   │   ├── main.d
│   │   ├── main.fed
│   │   ├── main.hex
│   │   ├── main.htm
│   │   ├── main.l2p
│   │   ├── main.lib
│   │   ├── main.lnp
│   │   ├── main.o
│   │   ├── main.plg
│   │   ├── main.sct
│   │   ├── oled._2i
│   │   ├── radio_config.crf
│   │   ├── radio_config.d
│   │   ├── radio_config.o
│   │   ├── rtc._2i
│   │   ├── show._2i
│   │   ├── spi._2i
│   │   ├── system_nrf51._2i
│   │   ├── system_nrf51.crf
│   │   ├── system_nrf51.d
│   │   ├── system_nrf51.o
│   │   ├── usart._2i
│   │   ├── usart.crf
│   │   ├── usart.d
│   │   ├── usart.o
│   │   └── w25x16._2i
│   ├── Source
│   │   ├── app_common
│   │   │   ├── app_button.c
│   │   │   ├── app_fifo.c
│   │   │   ├── app_gpiote.c
│   │   │   ├── app_scheduler.c
│   │   │   ├── app_timer.c
│   │   │   ├── app_uart.c
│   │   │   ├── app_uart_fifo.c
│   │   │   ├── crc16.c
│   │   │   ├── hci_mem_pool.c
│   │   │   ├── hci_slip.c
│   │   │   ├── hci_transport.c
│   │   │   └── pstorage.c
│   │   ├── ble
│   │   │   ├── ble_advdata.c
│   │   │   ├── ble_advdata_parser.c
│   │   │   ├── ble_bondmngr.c
│   │   │   ├── ble_central_bondmngr.c
│   │   │   ├── ble_conn_params.c
│   │   │   ├── ble_debug_assert_handler.c
│   │   │   ├── ble_dtm.c
│   │   │   ├── ble_error_log.c
│   │   │   ├── ble_flash.c
│   │   │   ├── ble_racp.c
│   │   │   ├── ble_radio_notification.c
│   │   │   ├── ble_sensorsim.c
│   │   │   ├── ble_services
│   │   │   │   ├── ble_ans_c.c
│   │   │   │   ├── ble_bas.c
│   │   │   │   ├── ble_bps.c
│   │   │   │   ├── ble_cscs.c
│   │   │   │   ├── ble_dfu.c
│   │   │   │   ├── ble_dis.c
│   │   │   │   ├── ble_gls.c
│   │   │   │   ├── ble_gls_db.c
│   │   │   │   ├── ble_hids.c
│   │   │   │   ├── ble_hrs.c
│   │   │   │   ├── ble_hts.c
│   │   │   │   ├── ble_ias.c
│   │   │   │   ├── ble_ias_c.c
│   │   │   │   ├── ble_lls.c
│   │   │   │   ├── ble_rscs.c
│   │   │   │   ├── ble_sc_ctrlpt.c
│   │   │   │   ├── ble_srv_common.c
│   │   │   │   └── ble_tps.c
│   │   │   └── rpc
│   │   │   ├── ble_rpc_cmd_decoder.c
│   │   │   ├── ble_rpc_cmd_decoder_gap.c
│   │   │   ├── ble_rpc_cmd_decoder_gatts.c
│   │   │   ├── ble_rpc_cmd_encoder.c
│   │   │   ├── ble_rpc_cmd_encoder_gap.c
│   │   │   ├── ble_rpc_cmd_encoder_gatts.c
│   │   │   ├── ble_rpc_event_decoder.c
│   │   │   ├── ble_rpc_event_decoder_gap.c
│   │   │   ├── ble_rpc_event_decoder_gatts.c
│   │   │   ├── ble_rpc_event_encoder.c
│   │   │   ├── ble_rpc_event_encoder_gap.c
│   │   │   ├── ble_rpc_event_encoder_gatts.c
│   │   │   ├── ble_rpc_pkt_receiver.c
│   │   │   └── ble_rpc_sd_stub.c
│   │   ├── console
│   │   │   └── console.c
│   │   ├── ext_sensors
│   │   │   ├── adns2080
│   │   │   │   └── adns2080.c
│   │   │   ├── cherry8x16
│   │   │   │   └── cherry8x16.c
│   │   │   ├── ds1624
│   │   │   │   └── ds1624.c
│   │   │   ├── mpu6050
│   │   │   │   └── mpu6050.c
│   │   │   ├── nRF6350
│   │   │   │   └── nRF6350.c
│   │   │   ├── sdio
│   │   │   │   └── sdio.c
│   │   │   └── synaptics_touchpad
│   │   │   └── synaptics_touchpad.c
│   │   ├── gzp
│   │   │   ├── nrf_gzp.c
│   │   │   ├── nrf_gzp_device.c
│   │   │   ├── nrf_gzp_host.c
│   │   │   └── nrf_gzp_host_nrf51.c
│   │   ├── keil_arm_uv4.lnt
│   │   ├── nrf_assert
│   │   │   └── nrf_assert.c
│   │   ├── nrf_delay
│   │   │   └── nrf_delay.c
│   │   ├── nrf_ecb
│   │   │   └── nrf_ecb.c
│   │   ├── nrf_nvmc
│   │   │   └── nrf_nvmc.c
│   │   ├── sd_common
│   │   │   └── softdevice_handler.c
│   │   ├── simple_uart
│   │   │   └── simple_uart.c
│   │   ├── spi_master
│   │   │   └── spi_master.c
│   │   ├── spi_slave
│   │   │   └── spi_slave.c
│   │   ├── templates
│   │   │   ├── arm
│   │   │   │   ├── arm_startup_nrf51.s
│   │   │   │   └── uicr_config.h
│   │   │   ├── gcc
│   │   │   │   ├── gcc_nrf51_blank_xxaa.ld
│   │   │   │   ├── gcc_nrf51_blank_xxab.ld
│   │   │   │   ├── gcc_nrf51_common.ld
│   │   │   │   ├── gcc_nrf51_s110_xxaa.ld
│   │   │   │   ├── gcc_nrf51_s110_xxab.ld
│   │   │   │   ├── gcc_nrf51_s210_xxaa.ld
│   │   │   │   ├── gcc_startup_nrf51.s
│   │   │   │   ├── Makefile.common
│   │   │   │   └── Makefile.windows
│   │   │   ├── iar
│   │   │   │   └── iar_startup_nrf51.s
│   │   │   └── system_nrf51.c
│   │   └── twi_master
│   │   ├── twi_hw_master.c
│   │   └── twi_sw_master.c
│   └── user
│   ├── ArInp.Scr
│   ├── arm_startup_nrf51.lst
│   ├── arm_startup_nrf51.s
│   ├── font.h
│   ├── JLinkLog.txt
│   ├── JLinkSettings.ini
│   ├── main.c
│   ├── main.map
│   ├── main_Target 1.dep
│   ├── main.uvgui.Administrator
│   ├── main.uvgui_Administrator.bak
│   ├── main.uvopt
│   └── main.uvproj
└── Radio2.4G实验2:通信tx
├── Include
│   ├── app_common
│   │   ├── app_button.h
│   │   ├── app_error.h
│   │   ├── app_fifo.h
│   │   ├── app_gpiote.h
│   │   ├── app_scheduler.h
│   │   ├── app_timer.h
│   │   ├── app_uart.h
│   │   ├── app_util.h
│   │   ├── crc16.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_bondmngr.h
│   │   ├── ble_central_bondmngr.h
│   │   ├── ble_conn_params.h
│   │   ├── ble_date_time.h
│   │   ├── ble_debug_assert_handler.h
│   │   ├── ble_dtm.h
│   │   ├── ble_error_log.h
│   │   ├── ble_flash.h
│   │   ├── ble_racp.h
│   │   ├── ble_radio_notification.h
│   │   ├── ble_sensorsim.h
│   │   ├── ble_services
│   │   │   ├── ble_ans_c.h
│   │   │   ├── ble_bas.h
│   │   │   ├── ble_bps.h
│   │   │   ├── ble_cscs.h
│   │   │   ├── ble_dfu.h
│   │   │   ├── ble_dis.h
│   │   │   ├── ble_gls_db.h
│   │   │   ├── ble_gls.h
│   │   │   ├── ble_hids.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
│   │   └── rpc
│   │   ├── ble_rpc_cmd_decoder_gap.h
│   │   ├── ble_rpc_cmd_decoder_gatts.h
│   │   ├── ble_rpc_cmd_decoder.h
│   │   ├── ble_rpc_cmd_encoder.h
│   │   ├── ble_rpc_defines.h
│   │   ├── ble_rpc_event_decoder_gap.h
│   │   ├── ble_rpc_event_decoder_gatts.h
│   │   ├── ble_rpc_event_decoder.h
│   │   ├── ble_rpc_event_encoder_gap.h
│   │   ├── ble_rpc_event_encoder_gatts.h
│   │   ├── ble_rpc_event_encoder.h
│   │   └── ble_rpc_pkt_receiver.h
│   ├── boards
│   │   ├── nrf6310.h
│   │   ├── pca10000.h
│   │   ├── pca10001.h
│   │   ├── pca10003.h
│   │   └── pca1000x.h
│   ├── boards.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
│   ├── gcc
│   │   ├── core_cm0.h
│   │   ├── core_cmFunc.h
│   │   └── core_cmInstr.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_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
│   │   ├── ble_stack_handler_types.h
│   │   └── softdevice_handler.h
│   ├── simple_uart.h
│   ├── spi_master.h
│   ├── spi_slave.h
│   ├── system_nrf51.h
│   └── twi_master.h
├── Lib
│   ├── esb
│   │   ├── arm
│   │   │   ├── esb_arm.lib
│   │   │   └── esb_sd_resources_arm.lib
│   │   └── gcc
│   │   ├── esb_gcc.a
│   │   └── esb_sd_resources_gcc.a
│   └── gzll
│   ├── arm
│   │   ├── gzll_arm.lib
│   │   └── gzll_sd_resources_arm.lib
│   └── gcc
│   ├── gzll_gcc.a
│   └── gzll_sd_resources_gcc.a
├── lp
│   ├── delay.c
│   ├── delay.h
│   ├── led.c
│   ├── led.h
│   ├── radio_config.c
│   └── radio_config.h
├── out
│   ├── adc._2i
│   ├── adxl345._2i
│   ├── arm_startup_nrf51.d
│   ├── arm_startup_nrf51.o
│   ├── delay._2i
│   ├── delay.crf
│   ├── delay.d
│   ├── delay.o
│   ├── exit._2i
│   ├── iic._2i
│   ├── led._2i
│   ├── led.crf
│   ├── led.d
│   ├── led.o
│   ├── logic._2i
│   ├── main._2i
│   ├── main.axf
│   ├── main.build_log.htm
│   ├── main.crf
│   ├── main.d
│   ├── main.fed
│   ├── main.hex
│   ├── main.htm
│   ├── main.l2p
│   ├── main.lib
│   ├── main.lnp
│   ├── main.o
│   ├── main.plg
│   ├── main.sct
│   ├── oled._2i
│   ├── radio_config.crf
│   ├── radio_config.d
│   ├── radio_config.o
│   ├── rtc._2i
│   ├── show._2i
│   ├── spi._2i
│   ├── system_nrf51._2i
│   ├── system_nrf51.crf
│   ├── system_nrf51.d
│   ├── system_nrf51.o
│   ├── usart._2i
│   └── w25x16._2i
├── Source
│   ├── app_common
│   │   ├── app_button.c
│   │   ├── app_fifo.c
│   │   ├── app_gpiote.c
│   │   ├── app_scheduler.c
│   │   ├── app_timer.c
│   │   ├── app_uart.c
│   │   ├── app_uart_fifo.c
│   │   ├── crc16.c
│   │   ├── hci_mem_pool.c
│   │   ├── hci_slip.c
│   │   ├── hci_transport.c
│   │   └── pstorage.c
│   ├── ble
│   │   ├── ble_advdata.c
│   │   ├── ble_advdata_parser.c
│   │   ├── ble_bondmngr.c
│   │   ├── ble_central_bondmngr.c
│   │   ├── ble_conn_params.c
│   │   ├── ble_debug_assert_handler.c
│   │   ├── ble_dtm.c
│   │   ├── ble_error_log.c
│   │   ├── ble_flash.c
│   │   ├── ble_racp.c
│   │   ├── ble_radio_notification.c
│   │   ├── ble_sensorsim.c
│   │   ├── ble_services
│   │   │   ├── ble_ans_c.c
│   │   │   ├── ble_bas.c
│   │   │   ├── ble_bps.c
│   │   │   ├── ble_cscs.c
│   │   │   ├── ble_dfu.c
│   │   │   ├── ble_dis.c
│   │   │   ├── ble_gls.c
│   │   │   ├── ble_gls_db.c
│   │   │   ├── ble_hids.c
│   │   │   ├── ble_hrs.c
│   │   │   ├── ble_hts.c
│   │   │   ├── ble_ias.c
│   │   │   ├── ble_ias_c.c
│   │   │   ├── ble_lls.c
│   │   │   ├── ble_rscs.c
│   │   │   ├── ble_sc_ctrlpt.c
│   │   │   ├── ble_srv_common.c
│   │   │   └── ble_tps.c
│   │   └── rpc
│   │   ├── ble_rpc_cmd_decoder.c
│   │   ├── ble_rpc_cmd_decoder_gap.c
│   │   ├── ble_rpc_cmd_decoder_gatts.c
│   │   ├── ble_rpc_cmd_encoder.c
│   │   ├── ble_rpc_cmd_encoder_gap.c
│   │   ├── ble_rpc_cmd_encoder_gatts.c
│   │   ├── ble_rpc_event_decoder.c
│   │   ├── ble_rpc_event_decoder_gap.c
│   │   ├── ble_rpc_event_decoder_gatts.c
│   │   ├── ble_rpc_event_encoder.c
│   │   ├── ble_rpc_event_encoder_gap.c
│   │   ├── ble_rpc_event_encoder_gatts.c
│   │   ├── ble_rpc_pkt_receiver.c
│   │   └── ble_rpc_sd_stub.c
│   ├── console
│   │   └── console.c
│   ├── ext_sensors
│   │   ├── adns2080
│   │   │   └── adns2080.c
│   │   ├── cherry8x16
│   │   │   └── cherry8x16.c
│   │   ├── ds1624
│   │   │   └── ds1624.c
│   │   ├── mpu6050
│   │   │   └── mpu6050.c
│   │   ├── nRF6350
│   │   │   └── nRF6350.c
│   │   ├── sdio
│   │   │   └── sdio.c
│   │   └── synaptics_touchpad
│   │   └── synaptics_touchpad.c
│   ├── gzp
│   │   ├── nrf_gzp.c
│   │   ├── nrf_gzp_device.c
│   │   ├── nrf_gzp_host.c
│   │   └── nrf_gzp_host_nrf51.c
│   ├── keil_arm_uv4.lnt
│   ├── nrf_assert
│   │   └── nrf_assert.c
│   ├── nrf_delay
│   │   └── nrf_delay.c
│   ├── nrf_ecb
│   │   └── nrf_ecb.c
│   ├── nrf_nvmc
│   │   └── nrf_nvmc.c
│   ├── sd_common
│   │   └── softdevice_handler.c
│   ├── simple_uart
│   │   └── simple_uart.c
│   ├── spi_master
│   │   └── spi_master.c
│   ├── spi_slave
│   │   └── spi_slave.c
│   ├── templates
│   │   ├── arm
│   │   │   ├── arm_startup_nrf51.s
│   │   │   └── uicr_config.h
│   │   ├── gcc
│   │   │   ├── gcc_nrf51_blank_xxaa.ld
│   │   │   ├── gcc_nrf51_blank_xxab.ld
│   │   │   ├── gcc_nrf51_common.ld
│   │   │   ├── gcc_nrf51_s110_xxaa.ld
│   │   │   ├── gcc_nrf51_s110_xxab.ld
│   │   │   ├── gcc_nrf51_s210_xxaa.ld
│   │   │   ├── gcc_startup_nrf51.s
│   │   │   ├── Makefile.common
│   │   │   └── Makefile.windows
│   │   ├── iar
│   │   │   └── iar_startup_nrf51.s
│   │   └── system_nrf51.c
│   └── twi_master
│   ├── twi_hw_master.c
│   └── twi_sw_master.c
└── user
├── 123.txt
├── ArInp.Scr
├── arm_startup_nrf51.lst
├── arm_startup_nrf51.s
├── font.h
├── JLinkLog.txt
├── JLinkSettings.ini
├── main.c
├── main.map
├── main_Target 1.dep
├── main.uvgui.Administrator
├── main.uvgui_Administrator.bak
├── main.uvopt
└── main.uvproj

106 directories, 600 files

标签:

实例下载地址

NRF51822 Radio2.4G实验

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警