nRF51822库函数速查

转载于http://blog.csdn.net/pig10086/article/details/65451510

nrf_soc.h

//初始化互斥锁

uint32_t sd_mutex_new(nrf_mutex_t * p_mutex);


//尝试获取互斥锁.

uint32_t sd_mutex_acquire(nrf_mutex_t * p_mutex);

//释放互斥锁.

uint32_t sd_mutex_release(nrf_mutex_t * p_mutex);


//使能外部中断.

uint32_t sd_nvic_EnableIRQ(IRQn_Type IRQn);


//禁止外部中断.

uint32_t sd_nvic_DisableIRQ(IRQn_Type IRQn);


// Get Pending Interrupt.

uint32_t sd_nvic_GetPendingIRQ(IRQn_Type IRQn, uint32_t * p_pending_irq);


// Set Pending Interrupt.

uint32_t sd_nvic_SetPendingIRQ(IRQn_Type IRQn);


// Clear Pending Interrupt.

uint32_t sd_nvic_ClearPendingIRQ(IRQn_Type IRQn);


//设置中断优先级.

uint32_t sd_nvic_SetPriority(IRQn_Type IRQn, nrf_app_irq_priority_t priority);


//取得中断优先级.

uint32_t sd_nvic_GetPriority(IRQn_Type IRQn, nrf_app_irq_priority_t * p_priority);


//系统复位.

uint32_t sd_nvic_SystemReset(void);


//进入临界区.

uint32_t sd_nvic_critical_region_enter(uint8_t * p_is_nested_critical_region);


//退出临界区.

uint32_t sd_nvic_critical_region_exit(uint8_t is_nested_critical_region);


//查询应用的随机数池容量.

uint32_t sd_rand_application_pool_capacity_get(uint8_t * p_pool_capacity);


//取得应用中有效地随机数字节数.

uint32_t sd_rand_application_bytes_available_get(uint8_t * p_bytes_available);


//从池中获取随机数字节.

uint32_t sd_rand_application_vector_get(uint8_t * p_buff, uint8_t length);


//取得复位原因寄存器的值.

uint32_t sd_power_reset_reason_get(uint32_t * p_reset_reason);


//清除复位原因寄存器的若干bit.

uint32_t sd_power_reset_reason_clr(uint32_t reset_reason_clr_msk);


//设置CPU睡眠时的电源模式.

uint32_t sd_power_mode_set(nrf_power_mode_t power_mode);


//关闭系统.

uint32_t sd_power_system_off(void);


//开关电源失效比较器

uint32_t sd_power_pof_enable(uint8_t pof_enable);


//设置电源故障阈值.

uint32_t sd_power_pof_threshold_set(nrf_power_failure_threshold_t threshold);


//设置NRF_POWER->RAMON寄存器.

uint32_t sd_power_ramon_set(uint32_t ramon);


//清除NRF_POWER->RAMON寄存器.

uint32_t sd_power_ramon_clr(uint32_t ramon);


// Get contents of NRF_POWER->RAMON register, indicates power status of ram blocks.

uint32_t sd_power_ramon_get(uint32_t * p_ramon);


//Set bits in the NRF_POWER->GPREGRET register.

uint32_t sd_power_gpregret_set(uint32_t gpregret_msk);


//Clear bits in the NRF_POWER->GPREGRET register.

uint32_t sd_power_gpregret_clr(uint32_t gpregret_msk);


//Get contents of the NRF_POWER->GPREGRET register.

uint32_t sd_power_gpregret_get(uint32_t *p_gpregret);


//设置DCDC模式.

uint32_t sd_power_dcdc_mode_set(nrf_power_dcdc_mode_t dcdc_mode);


//请求使用高频晶体振荡器.

uint32_t sd_clock_hfclk_request(void);


//释放高频晶体振荡器.

uint32_t sd_clock_hfclk_release(void);


//检查高频晶体振荡器是否在运行.

SVCALL(SD_CLOCK_HFCLK_IS_RUNNING, uint32_t, sd_clock_hfclk_is_running(uint32_t * p_is_running));


//等待程序事件.

uint32_t sd_app_evt_wait(void);

// Get PPI channel enable register contents.

uint32_t sd_ppi_channel_enable_get(uint32_t * p_channel_enable);


//Set PPI channel enable register.

uint32_t sd_ppi_channel_enable_set(uint32_t channel_enable_set_msk);


//Clear PPI channel enable register.

uint32_t sd_ppi_channel_enable_clr(uint32_t channel_enable_clr_msk);


// Assign endpoints to a PPI channel.

uint32_t sd_ppi_channel_assign(uint8_t channel_num,constvolatilevoid* evt_endpoint,constvolatilevoid* task_endpoint);


//Task to enable a channel group.

uint32_t sd_ppi_group_task_enable(uint8_t group_num);


//Task to disable a channel group.

uint32_t sd_ppi_group_task_disable(uint8_t group_num);


//Assign PPI channels to a channel group.

uint32_t sd_ppi_group_assign(uint8_t group_num, uint32_t channel_msk);


//Gets the PPI channels of a channel group.

uint32_t sd_ppi_group_get(uint8_t group_num, uint32_t * p_channel_msk);


//配置无线通知信号.

uint32_t sd_radio_notification_cfg_set(nrf_radio_notification_type_t type, nrf_radio_notification_distance_t distance);


// AES-ECB加密.

uint32_t sd_ecb_block_encrypt(nrf_ecb_hal_data_t * p_ecb_data);


// Gets any pending events generated by the SoC API.

uint32_t, sd_evt_get(uint32_t * p_evt_id);


//取得芯片温度

uint32_t sd_temp_get(int32_t * p_temp);


//写数据到Flash

sd_flash_write(uint32_t *constp_dst, uint32_tconst*constp_src, uint32_t size);


//擦除Flash页

uint32_t sd_flash_page_erase(uint32_t page_number);


// Flash Protection set

uint32_t sd_flash_protect(uint32_t protenset0, uint32_t protenset1);


ble.h

//从队列中取得等待处理的事件

uint32_t, sd_ble_evt_get(uint8_t* p_dest, uint16_t *p_len);

//取得BLE协议栈中有效地传输缓冲区总数

uint32_t sd_ble_tx_buffer_count_get(uint8_t* p_count);

//添加一个厂商特定UUID.

uint32_t sd_ble_uuid_vs_add(ble_uuid128_tconst*constp_vs_uuid, uint8_t *constp_uuid_type);

//解码原始小端UUID字节(16bit或128bit)到24bit的ble_uuid_t结构

uint32_t sd_ble_uuid_decode(uint8_t uuid_le_len, uint8_tconst*constp_uuid_le, ble_uuid_t *constp_uuid);

//编码24bit的ble_uuid_t结构到原始小端UUID字节(16bit或128bit)

uint32_t sd_ble_uuid_encode(ble_uuid_tconst*constp_uuid, uint8_t *constp_uuid_le_len, uint8_t *constp_uuid_le));

//取得版本信息

uint32_t sd_ble_version_get(ble_version_t * p_version);

//提供用户内存块

uint32_t sd_ble_user_mem_reply(uint16_t conn_handle, ble_user_mem_block_t *p_block);

ble_gap.h

//设置本地蓝牙MAC地址

uint32_t sd_ble_gap_address_set(ble_gap_addr_tconst*constp_addr);

//取得本地蓝牙MAC地址

uint32_t sd_ble_gap_address_get(ble_gap_addr_t *constp_addr);

//设置,清除,更新广播扫描响应数据

uint32_t sd_ble_gap_adv_data_set(uint8_tconst*constp_data, uint8_t dlen, uint8_tconst*constp_sr_data, uint8_t srdlen);

//开始广播(Start advertising (GAP Discoverable, Connectable modes, Broadcast Procedure)

uint32_t sd_ble_gap_adv_start(ble_gap_adv_params_tconst*constp_adv_params);

//停止广播(Start advertising (GAP Discoverable, Connectable modes, Broadcast Procedure)

uint32_t sd_ble_gap_adv_stop(void);

//更新连接参数

uint32_t sd_ble_gap_conn_param_update(uint16_t conn_handle, ble_gap_conn_params_tconst*constp_conn_params);

//断开连接(GAP Link Termination).

uint32_t, sd_ble_gap_disconnect(uint16_t conn_handle, uint8_t hci_status_code);

//设置无线发射功率dBm(accepted values are -40, -30, -20, -16, -12, -8, -4, 0, and 4 dBm).

SVCALL(SD_BLE_GAP_TX_POWER_SET, uint32_t, sd_ble_gap_tx_power_set(int8_t tx_power))

;

//Set GAP Appearance value.

uint32_t sd_ble_gap_appearance_set(uint16_t appearance);

//Get GAP Appearance value.

uint32_t, sd_ble_gap_appearance_get(uint16_t *constp_appearance);

//设置GAP外设优先连接参数

uint32_t sd_ble_gap_ppcp_set(ble_gap_conn_params_tconst*constp_conn_params);

//取得GAP外设优先连接参数

uint32_t sd_ble_gap_ppcp_get(ble_gap_conn_params_t *constp_conn_params);

//设置GAP设备名

uint32_t sd_ble_gap_device_name_set(ble_gap_conn_sec_mode_tconst*constp_write_perm, uint8_tconst*constp_dev_name, uint16_t len);

//取得GAP设备名

uint32_t, sd_ble_gap_device_name_get(uint8_t *constp_dev_name, uint16_t *constp_len);

//启动GAP认证流程

uint32_t, sd_ble_gap_authenticate(uint16_t conn_handle, ble_gap_sec_params_tconst*constp_sec_params);

//Reply with GAP security parameters.

uint32_t sd_ble_gap_sec_params_reply(uint16_t conn_handle, uint8_t sec_status, ble_gap_sec_params_tconst*constp_sec_params);

//Reply with an authentication key

SVCALL(SD_BLE_GAP_AUTH_KEY_REPLY, uint32_t, sd_ble_gap_auth_key_reply(uint16_t conn_handle, uint8_t key_type, uint8_tconst*constkey);

//Reply with GAP security information.

uint32_t sd_ble_gap_sec_info_reply(uint16_t conn_handle, ble_gap_enc_info_tconst*constp_enc_info, ble_gap_sign_info_tconst*constp_sign_info);

//Get the current connection security.

uint32_t, sd_ble_gap_conn_sec_get(uint16_t conn_handle, ble_gap_conn_sec_t *constp_conn_sec);

//开始接受RSSI值的变化通知

uint32_t sd_ble_gap_rssi_start(uint16_t conn_handle);

//停止接收RSSI值变化通知

SVCALL(SD_BLE_GAP_RSSI_STOP, uint32_t, sd_ble_gap_rssi_stop(uint16_t conn_handle);

ble_gattc.h

//启动或继续GATT主要服务的发现过程

uint32_t sd_ble_gattc_primary_services_discover(uint16_t conn_handle, uint16_t start_handle, ble_uuid_tconst*constp_srvc_uuid);

//启动或继续GATT关系发现过程

uint32_t sd_ble_gattc_relationships_discover(uint16_t conn_handle, ble_gattc_handle_range_tconst*constp_handle_range);

//启动或继续GATT特性发现过程

uint32_t sd_ble_gattc_characteristics_discover(uint16_t conn_handle, ble_gattc_handle_range_tconst*constp_handle_range);

//启动或继续GATT特性描述发现过程

uint32_t sd_ble_gattc_descriptors_discover(uint16_t conn_handle, ble_gattc_handle_range_tconst*constp_handle_range);

//启动或继续通过GATT特性的UUID的读操作

uint32_t sd_ble_gattc_char_value_by_uuid_read(uint16_t conn_handle, ble_uuid_tconst*constp_uuid, ble_gattc_handle_range_tconst*constp_handle_range);

//启动或继续GATT读取长特性或描述的过程

uint32_t sd_ble_gattc_read(uint16_t conn_handle, uint16_t handle, uint16_t offset);

//启动GATT读取多个特性值的过程

uint32_t sd_ble_gattc_char_values_read(uint16_t conn_handle, uint16_tconst*constp_handles, uint16_t handle_count);

//执行一个无报告的写操作

uint32_t sd_ble_gattc_write(uint16_t conn_handle, ble_gattc_write_params_tconst*constp_write_params);

//发送配置到GATT服务器

uint32_t sd_ble_gattc_hv_confirm(uint16_t conn_handle, uint16_t handle);

ble_gatts.h

//添加一个服务声明到本地服务的ATT表

uint32_t sd_ble_gatts_service_add(uint8_t type, ble_uuid_tconst*constp_uuid, uint16_t *constp_handle);

//添加一个包含声明到本地服务的ATT表

uint32_t sd_ble_gatts_include_add(uint16_t service_handle, uint16_t inc_srvc_handle, uint16_t *constp_include_handle);

//添加特性声明,特性值声明,可选的特性描述声明到ATT表

uint32_t sd_ble_gatts_characteristic_add(uint16_t service_handle, ble_gatts_char_md_tconst*constp_char_md, ble_gatts_attr_tconst*constp_attr_char_value, ble_gatts_char_handles_t *constp_handles);

//添加描述到ATT表

uint32_t sd_ble_gatts_descriptor_add(uint16_t char_handle, ble_gatts_attr_tconst*constp_attr, uint16_t*constp_handle);

//设置值到特性

uint32_t sd_ble_gatts_value_set(uint16_t handle, uint16_t offset, uint16_t*constp_len, uint8_tconst*constp_value);

//取得属性值

uint32_t sd_ble_gatts_value_get(uint16_t handle, uint16_t offset, uint16_t *constp_len, uint8_t*constp_data);

//Notify或Indicate特性值.

uint32_t, sd_ble_gatts_hvx(uint16_t conn_handle, ble_gatts_hvx_params_tconst*constp_hvx_params);

//Indicate属性值改变

uint32_t sd_ble_gatts_service_changed(uint16_t conn_handle, uint16_t start_handle, uint16_t end_handle);

//报告读写授权请求

uint32_t sd_ble_gatts_rw_authorize_reply(uint16_t conn_handle, ble_gatts_rw_authorize_reply_params_tconst*constp_rw_authorize_reply_params);

//Update persistent system attribute information

uint32_t sd_ble_gatts_sys_attr_set(uint16_t conn_handle, uint8_tconst*constp_sys_attr_data, uint16_t len);

//Retrieve persistent system attribute information from the stack.

uint32_t sd_ble_gatts_sys_attr_get(uint16_t conn_handle, uint8_t *constp_sys_attr_data, uint16_t*constp_len);

ble_l2cap.h

//注册一个L2CAP的CID

uint32_t sd_ble_l2cap_cid_register(uint16_t cid);

//注销CID

uint32_t sd_ble_l2cap_cid_unregister(uint16_t cid);

//发送L2CAP包

uint32_t sd_ble_l2cap_tx(uint16_t conn_handle, ble_l2cap_header_tconst*constp_header, uint8_tconst*constp_data);

nrf_sdm.h

//使能SoftDevice

uint32_t sd_softdevice_enable(nrf_clock_lfclksrc_t clock_source, softdevice_assertion_handler_t assertion_handler);

//禁用SoftDevice

uint32_t sd_softdevice_disable(void);

//检查SoftDevice是否已使能

uint32_t sd_softdevice_is_enabled(uint8_t * p_softdevice_enabled);

//开始转发中断到应用程序

uint32_t sd_softdevice_forward_to_application(void);

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容