资源简介
青风带你学蓝牙,蓝牙工程实例详细讲解。 这里的例子讲解非常详细,希望这些例子可以帮助大家在学习中遇到的一些问题。这里讲到了蓝牙,是最新的蓝颜知识。
代码片段和文件信息
/* Copyright (c) 2015 Nordic Semiconductor. All Rights Reserved.
*
* The information contained herein is property of Nordic Semiconductor ASA.
* Terms and conditions of usage are described in detail in NORDIC
* SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
*
* Licensees are granted free non-transferable use of the information. NO
* WARRANTY of ANY KIND is provided. This heading must NOT be removed from
* the file.
*
*/
#include “nrf_error.h“
#include “ant_channel_config.h“
#include “ant_interface.h“
#include “ant_parameters.h“
#include “sdk_common.h“
uint32_t ant_channel_init(ant_channel_config_t const * p_config)
{
uint32_t err_code;
// Set Channel Number.
err_code = sd_ant_channel_assign(p_config->channel_number
p_config->channel_type
p_config->network_number
p_config->ext_assign);
VERIFY_SUCCESS(err_code);
// Set Channel ID.
err_code = sd_ant_channel_id_set(p_config->channel_number
p_config->device_number
p_config->device_type
p_config->transmission_type);
VERIFY_SUCCESS(err_code);
// Set Channel RF frequency.
err_code = sd_ant_channel_radio_freq_set(p_config->channel_number p_config->rf_freq);
VERIFY_SUCCESS(err_code);
// Set Channel period.
if (!(p_config->ext_assign & EXT_PARAM_ALWAYS_SEARCH))
{
err_code = sd_ant_channel_period_set(p_config->channel_number p_config->channel_period);
}
#if ANT_CONFIG_ENCRYPTED_CHANNELS > 0
VERIFY_SUCCESS(err_code);
err_code = ant_channel_encrypt_config(p_config->channel_type p_config->channel_number p_config->p_crypto_settings);
#endif
return err_code;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 939593 2016-03-11 01:01 SVD\nrf51.svd
文件 2082494 2016-03-11 01:01 SVD\nrf52.svd
文件 560017 2016-09-24 10:42 蓝牙工程样本.pdf
文件 724386 2016-09-22 21:04 蓝牙工程样本详细讲解.pdf
文件 1931 2016-03-11 01:01 components\ant\ant_channel_config\ant_channel_config.c
文件 1973 2016-03-11 01:01 components\ant\ant_channel_config\ant_channel_config.h
文件 7285 2016-03-11 01:01 components\ant\ant_encryption\ant_encrypt_config.c
文件 9923 2016-03-11 01:01 components\ant\ant_encryption\ant_encrypt_config.h
文件 5656 2016-03-11 01:01 components\ant\ant_encryption\ant_encrypt_negotiation_slave.c
文件 3920 2016-03-11 01:01 components\ant\ant_encryption\ant_encrypt_negotiation_slave.h
文件 1181 2016-03-11 01:01 components\ant\ant_key_manager\ant_key_manager.c
文件 1931 2016-03-11 01:01 components\ant\ant_key_manager\ant_key_manager.h
文件 965 2016-03-11 01:01 components\ant\ant_key_manager\config\ant_key_manager_config.h
文件 15961 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\ant_bpwr.c
文件 17426 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\ant_bpwr.h
文件 1949 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\ant_bpwr_local.h
文件 2069 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_common_data.c
文件 2029 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_common_data.h
文件 1254 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_pages.h
文件 9112 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_1.c
文件 3891 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_1.h
文件 2903 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_16.c
文件 2595 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_16.h
文件 1377 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_17.c
文件 1727 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_17.h
文件 1377 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_18.c
文件 1275 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_18.h
文件 3358 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_torque.c
文件 2744 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\ant_bpwr_page_torque.h
文件 1711 2016-03-11 01:01 components\ant\ant_profiles\ant_bpwr\pages\logger\ant_bpwr_page_logger.h
............此处省略2150个文件信息
相关资源
- 蓝牙五子棋
- Getting Started with Bluetooth Low Energy 低功
- 手机蓝牙串口的调试助手demo实现
- 安卓蓝牙上位机数据收发教程
- CC2640开发教程合集
- 蓝牙串口 十六进制 BluetoothSSP安卓de
- 蓝牙打印二维码
- 蓝牙4.1规范
- 手机蓝牙与设备通讯
- HC-05蓝牙模块使用资料包STM32控制程序
- 无线通信仪表与测试应用[第二版] p
- hc-05串口蓝牙全部开发资料
- 蓝牙资料.zip
- 低功耗蓝牙开发权威指南 带书签 高清
- arduino 蓝牙遥控和红外避障小车设计过
- 黑苹果因特尔AX200网卡驱动 加蓝牙
- QCC3003/5121技术资料
- Ble蓝牙4.0搜索设备链接获取值Demo
- nRF52840开发指南-下册.pdf
- BLE-入门与提高教程
- nrf51822蓝牙原理图PCB文件
- 蓝牙HC-05原理图、封装
- 《蓝牙核心技术及应用》
- BCM94360 CS2 win10蓝牙和网卡驱动
- 蓝牙4.2技术规范 Bluetooth Core Specifica
- 蓝牙核心协议Core V2.1 + EDR.pdf
- 平衡小车pcb与原理图,源码,蓝牙,
- 青风带你学蓝牙5.0初稿).pdf
- SmartRF_Flash_Programmer安装包.rar
- 蓝牙4.0以上连接多台设备
评论
共有 条评论