相关下载:http://download.csdn.net/detail/xgbing/9565708

首先看的示例是心率计一个示例程序:<KEIL path> \ARM\Device\Nordic\nrf51822\Board\pca10001\s110\ble_app_hrs\arm。

打开工程前需要下载蓝牙协议栈S110 nRF51822 SoftDevice(s110_nrf51822_6.0.0_softdevice.hex)到板子中,这个手册上有说明。

首先看的是main.c中的main函数:

  1. /*****************************************************************************
  2. * Main Function
  3. *****************************************************************************/
  4.  
  5. /**@brief Function for the application main entry.
  6. */
  7. int main(void)
  8. {
  9. uint32_t err_code;
  10.  
  11. timers_init();
  12. gpiote_init();
  13. buttons_init();
  14. ble_stack_init();
  15. bond_manager_init();
  16.  
  17. // Initialize Bluetooth Stack parameters
  18. gap_params_init();
  19. advertising_init();
  20. services_init();
  21. conn_params_init();
  22. sec_params_init();
  23.  
  24. // Start advertising
  25. advertising_start();
  26.  
  27. // Enter main loop
  28. for (;;)
  29. {
  30. // Switch to a low power state until an event is available for the application
  31. err_code = sd_app_evt_wait();
  32. APP_ERROR_CHECK(err_code);
  33. }
  34. }

它很简洁:初始化->start->loop。

(1)Timer初始化

  1. /**@brief Function for the Timer initialization.
  2. *
  3. * @details Initializes the timer module. This creates and starts application timers.
  4. */
  5. static void timers_init(void)
  6. {
  7. uint32_t err_code;
  8.  
  9. // Initialize timer module
  10. APP_TIMER_INIT(APP_TIMER_PRESCALER, APP_TIMER_MAX_TIMERS, APP_TIMER_OP_QUEUE_SIZE, false);
  11.  
  12. // Create timers
  13. err_code = app_timer_create(&m_battery_timer_id,
  14. APP_TIMER_MODE_REPEATED,
  15. battery_level_meas_timeout_handler);
  16. APP_ERROR_CHECK(err_code);
  17.  
  18. err_code = app_timer_create(&m_heart_rate_timer_id,
  19. APP_TIMER_MODE_REPEATED,
  20. heart_rate_meas_timeout_handler);
  21. APP_ERROR_CHECK(err_code);
  22. }

使用app_timer_create创建了两个时钟,处理函数分别是battery_level_meas_timeout_handler和heart_rate_meas_timeout_handler。

  1. /**@brief Function for handling the Battery measurement timer timeout.
  2. *
  3. * @details This function will be called each time the battery level measurement timer expires.
  4. * This function will start the ADC.
  5. *
  6. * @param[in] p_context Pointer used for passing some arbitrary information (context) from the
  7. * app_start_timer() call to the timeout handler.
  8. */
  9. static void battery_level_meas_timeout_handler(void * p_context)
  10. {
  11. UNUSED_PARAMETER(p_context);
  12. battery_start();
  13. }
  14.  
  15. /**@brief Function for handling the Heart rate measurement timer timeout.
  16. *
  17. * @details This function will be called each time the heart rate measurement timer expires.
  18. * It will exclude RR Interval data from every third measurement.
  19. *
  20. * @param[in] p_context Pointer used for passing some arbitrary information (context) from the
  21. * app_start_timer() call to the timeout handler.
  22. */
  23. static void heart_rate_meas_timeout_handler(void * p_context)
  24. {
  25. uint32_t err_code;
  26.  
  27. UNUSED_PARAMETER(p_context);
  28.  
  29. err_code = ble_hrs_heart_rate_measurement_send(&m_hrs, m_cur_heart_rate);
  30.  
  31. if (
  32. (err_code != NRF_SUCCESS)
  33. &&
  34. (err_code != NRF_ERROR_INVALID_STATE)
  35. &&
  36. (err_code != BLE_ERROR_NO_TX_BUFFERS)
  37. &&
  38. (err_code != BLE_ERROR_GATTS_SYS_ATTR_MISSING)
  39. )
  40. {
  41. APP_ERROR_HANDLER(err_code);
  42. }
  43. }

时钟创建后并不会自动运行,当调用application_timers_start后时钟开始运行:

  1. /**@brief Function for starting the application timers.
  2. */
  3. static void application_timers_start(void)
  4. {
  5. uint32_t err_code;
  6.  
  7. // Start application timers
  8. err_code = app_timer_start(m_battery_timer_id, BATTERY_LEVEL_MEAS_INTERVAL, NULL);
  9. APP_ERROR_CHECK(err_code);
  10.  
  11. err_code = app_timer_start(m_heart_rate_timer_id, HEART_RATE_MEAS_INTERVAL, NULL);
  12. APP_ERROR_CHECK(err_code);
  13. }

services_init()初始化程序中的三个服务:ble_dis.c, ble_bas.c, ble_hrs.c。

  1. /**@brief Function for initializing the services that will be used by the application.
  2. *
  3. * @details Initialize the Heart Rate, Battery and Device Information services.
  4. */
  5. static void services_init(void)
  6. {
  7. uint32_t err_code;
  8. ble_hrs_init_t hrs_init;
  9. ble_bas_init_t bas_init;
  10. ble_dis_init_t dis_init;
  11. uint8_t body_sensor_location;
  12.  
  13. // Initialize Heart Rate Service
  14. body_sensor_location = BLE_HRS_BODY_SENSOR_LOCATION_FINGER;
  15.  
  16. memset(&hrs_init, , sizeof(hrs_init));
  17.  
  18. hrs_init.is_sensor_contact_supported = false;
  19. hrs_init.p_body_sensor_location = &body_sensor_location;
  20.  
  21. // Here the sec level for the Heart Rate Service can be changed/increased.
  22. BLE_GAP_CONN_SEC_MODE_SET_OPEN(&hrs_init.hrs_hrm_attr_md.cccd_write_perm);
  23. BLE_GAP_CONN_SEC_MODE_SET_NO_ACCESS(&hrs_init.hrs_hrm_attr_md.read_perm);
  24. BLE_GAP_CONN_SEC_MODE_SET_NO_ACCESS(&hrs_init.hrs_hrm_attr_md.write_perm);
  25.  
  26. BLE_GAP_CONN_SEC_MODE_SET_OPEN(&hrs_init.hrs_bsl_attr_md.read_perm);
  27. BLE_GAP_CONN_SEC_MODE_SET_NO_ACCESS(&hrs_init.hrs_bsl_attr_md.write_perm);
  28.  
  29. err_code = ble_hrs_init(&m_hrs, &hrs_init);
  30. APP_ERROR_CHECK(err_code);
  31.  
  32. // Initialize Battery Service
  33. memset(&bas_init, , sizeof(bas_init));
  34.  
  35. // Here the sec level for the Battery Service can be changed/increased.
  36. BLE_GAP_CONN_SEC_MODE_SET_OPEN(&bas_init.battery_level_char_attr_md.cccd_write_perm);
  37. BLE_GAP_CONN_SEC_MODE_SET_OPEN(&bas_init.battery_level_char_attr_md.read_perm);
  38. BLE_GAP_CONN_SEC_MODE_SET_NO_ACCESS(&bas_init.battery_level_char_attr_md.write_perm);
  39.  
  40. BLE_GAP_CONN_SEC_MODE_SET_OPEN(&bas_init.battery_level_report_read_perm);
  41.  
  42. bas_init.evt_handler = NULL;
  43. bas_init.support_notification = true;
  44. bas_init.p_report_ref = NULL;
  45. bas_init.initial_batt_level = ;
  46.  
  47. err_code = ble_bas_init(&bas, &bas_init);
  48. APP_ERROR_CHECK(err_code);
  49.  
  50. // Initialize Device Information Service
  51. memset(&dis_init, , sizeof(dis_init));
  52.  
  53. ble_srv_ascii_to_utf8(&dis_init.manufact_name_str, MANUFACTURER_NAME);
  54.  
  55. BLE_GAP_CONN_SEC_MODE_SET_OPEN(&dis_init.dis_attr_md.read_perm);
  56. BLE_GAP_CONN_SEC_MODE_SET_NO_ACCESS(&dis_init.dis_attr_md.write_perm);
  57.  
  58. err_code = ble_dis_init(&dis_init);
  59. APP_ERROR_CHECK(err_code);
  60. }

static ble_hrs_t的结构定义:

  1. /**@brief Heart Rate Service structure. This contains various status information for the service. */
  2. typedef struct ble_hrs_s
  3. {
  4. ble_hrs_evt_handler_t evt_handler; /**< Event handler to be called for handling events in the Heart Rate Service. */
  5. bool is_expended_energy_supported; /**< TRUE if Expended Energy measurement is supported. */
  6. bool is_sensor_contact_supported; /**< TRUE if sensor contact detection is supported. */
  7. uint16_t service_handle; /**< Handle of Heart Rate Service (as provided by the BLE stack). */
  8. ble_gatts_char_handles_t hrm_handles; /**< Handles related to the Heart Rate Measurement characteristic. */
  9. ble_gatts_char_handles_t bsl_handles; /**< Handles related to the Body Sensor Location characteristic. */
  10. ble_gatts_char_handles_t hrcp_handles; /**< Handles related to the Heart Rate Control Point characteristic. */
  11. uint16_t conn_handle; /**< Handle of the current connection (as provided by the BLE stack, is BLE_CONN_HANDLE_INVALID if not in a connection). */
  12. bool is_sensor_contact_detected; /**< TRUE if sensor contact has been detected. */
  13. uint16_t rr_interval[BLE_HRS_MAX_BUFFERED_RR_INTERVALS]; /**< Set of RR Interval measurements since the last Heart Rate Measurement transmission. */
  14. uint16_t rr_interval_count; /**< Number of RR Interval measurements since the last Heart Rate Measurement transmission. */
  15. } ble_hrs_t;

ble_hrs.h/ble_hrs.c是心率计程序服务的代码。

buttons_init(void)初始化两个按钮:HR_INC_BUTTON_PIN_NO和HR_DEC_BUTTON_PIN_NO,分别模拟心率计的加减。

  1. /**@brief Function for initializing the button module.
  2. */
  3. static void buttons_init(void)
  4. {
  5. // Configure HR_INC_BUTTON_PIN_NO and HR_DEC_BUTTON_PIN_NO as wake up buttons and also configure
  6. // for 'pull up' because the eval board does not have external pull up resistors connected to
  7. // the buttons.
  8. static app_button_cfg_t buttons[] =
  9. {
  10. {HR_INC_BUTTON_PIN_NO, false, BUTTON_PULL, button_event_handler},
  11. {HR_DEC_BUTTON_PIN_NO, false, BUTTON_PULL, button_event_handler} // Note: This pin is also BONDMNGR_DELETE_BUTTON_PIN_NO
  12. };
  13.  
  14. APP_BUTTON_INIT(buttons, ]), BUTTON_DETECTION_DELAY, false);
  15. }

当按下按钮时,处理程序是button_event_handler(),它处理心率计的加减模拟:

  1. /**@brief Function for handling button events.
  2. *
  3. * @param[in] pin_no The pin number of the button pressed.
  4. */
  5. static void button_event_handler(uint8_t pin_no, uint8_t button_action)
  6. {
  7. if (button_action == APP_BUTTON_PUSH)
  8. {
  9. switch (pin_no)
  10. {
  11. case HR_INC_BUTTON_PIN_NO:
  12. // Increase Heart Rate measurement
  13. m_cur_heart_rate += HEART_RATE_CHANGE;
  14. if (m_cur_heart_rate > MAX_HEART_RATE)
  15. {
  16. m_cur_heart_rate = MIN_HEART_RATE; // Loop back
  17. }
  18. break;
  19.  
  20. case HR_DEC_BUTTON_PIN_NO:
  21. // Decrease Heart Rate measurement
  22. m_cur_heart_rate -= HEART_RATE_CHANGE;
  23. if (m_cur_heart_rate < MIN_HEART_RATE)
  24. {
  25. m_cur_heart_rate = MAX_HEART_RATE; // Loop back
  26. }
  27. break;
  28.  
  29. default:
  30. APP_ERROR_HANDLER(pin_no);
  31. break;
  32. }
  33. }
  34. }

低功耗蓝牙4.0BLE编程-nrf51822开发(2)的更多相关文章

  1. 低功耗蓝牙4.0BLE编程-nrf51822开发(3)

    蓝牙协议栈 nrf51822开发中,蓝牙协议栈和应用开发是分开的. (1)兼容蓝牙4.0低功耗协议栈基带层,L2CAP\AAT\SM\GAP\GATT协议,设备和广播,GATT客户端和服务器,SMP支 ...

  2. 低功耗蓝牙4.0BLE编程-nrf51822开发(9)

    Android 4.3以后的系统自动支持蓝牙4.0规范的低功耗蓝牙(BLE).在android4.3之前,蓝牙4.0支持是由手机厂家加入支持的,接口各异,导致开发一个支持蓝牙4.0程序支持市面上的手机 ...

  3. 低功耗蓝牙4.0BLE编程-nrf51822开发(1)

    为了省钱,也为了提高手动能力,只买了块核心板,仿真器用的是旧的jinkv7,自己搭扩展板,DIY就这样开始了. 买这块之前做了些调查,最终选定了nrf51822,功耗低,性能强,开发难度小,虽然比TI ...

  4. 低功耗蓝牙4.0BLE编程-nrf51822开发(4)

    蓝牙是一种短距离的通讯方式,它设计的意图是取代电子便携设备之间的有线电缆连接.蓝牙的主要特性是健壮性.低功耗.成本低,它工作于免费的2.4无线传输频段. 蓝牙有两种技术系统:基本速率Basic Rat ...

  5. 低功耗蓝牙4.0BLE编程-nrf51822开发(11)-蓝牙串口代码分析

    代码实例:点击打开链接 实现的功能是从uart口发送数据至另一个蓝牙串口,或是从蓝牙读取数据通过uart打印出数据. int main(void) { // Initialize leds_init( ...

  6. 低功耗蓝牙4.0BLE编程-nrf51822开发(7)-SDP服务发现协议

    SDP的全称是Service Discovery Protocol,中文是服务发现协议.SDP(服务发现协议)是蓝牙协议体系中的核心协议,是蓝牙系统重要组成部分,是所有用户模式的基础.在蓝牙系统中.客 ...

  7. 低功耗蓝牙4.0BLE编程-nrf51822开发(6)-Battery Service

    Battery Service是有关电池特性方面的服务,如果需要它,在初始化时将它加入到蓝牙协议栈. 如果通过ble_bas_battery_level_update(),电池电量将会通知,Batte ...

  8. 低功耗蓝牙4.0BLE编程-nrf51822开发(10)-描述符

    特性中的属性有两种:属性值或描述符. 支持通知或指示的特性中默认有一个描述符:客户端特性配置描述符(Client Characteristic Configuration Descriptor,CCC ...

  9. 低功耗蓝牙4.0BLE编程-nrf51822开发(8)-GATT

    The Generic Attribute Profile (GATT)使用属性定义一个服务框架,定义了服务和特性的过程和数据格式,包含发现.读取.写入.通知指示特性和配置特性广播. GATT配置文件 ...

随机推荐

  1. intersection

    用来找到两个rdd的交集,注意,最终的new rdd的分区数量取决于两个rdd中的最大分区数量. 测试一下: val data1 = sc.parallelize(1 to 20,1) val dat ...

  2. CodeForces 300C --数论

    A - A Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Submit Statu ...

  3. 微信公众平台开发3:订阅事件subscribe处理

    新用户关注微信公众平台,将产生一个订阅事件,即subscribe事件,默认代码中没有对这一事件进行相应处理. 在新用户关注公众平台后,可能想知道该平台提供了哪些功能,以及怎样使用该平台,通俗一点讲就是 ...

  4. 2016.6.23 PHP实现新闻发布系统主体部分

    1.新闻发布系统的列表: <html><meta http-equiv="Content-Type" content="text/html; chars ...

  5. Xamarin Anroid App访问网站失败

    Xamarin Anroid App访问网站失败 错误信息:net::ERR_NAME_NOT_RESOLVED如果电脑同时有有线网卡和无线网卡,电脑使用无线网卡上网,而有线网卡不上网.这时,就会出现 ...

  6. Codeforces Round #292 (Div. 2)

    A. Drazil and Date 无算法,判断(s - (a + b)) % 2是否为零,若零,表示在s步内还能走向其他的地方并且回来 否则,都是No #include <cstdio> ...

  7. 位运算 ZOJ 3870 Team Formation

    题目传送门 /* 题意:找出符合 A^B > max (A, B) 的组数: 位运算:异或的性质,1^1=0, 1^0=1, 0^1=1, 0^0=0:与的性质:1^1=1, 1^0=0, 0^ ...

  8. ios cocos2d FPS过低的解决方法

    每当运行程序时,左下角的FPS就低到了10,使app很卡, 原来程序主要卡的部分 -(void)draw{ NSDate *startTime = [NSDate date]; [self func] ...

  9. Codeforces Round #204 (Div. 2) A.Jeff and Digits

    因为数字只含有5或0,如果要被90整除的话必须含有0,否则输出-1 如果含有0的话,就只需考虑组合的数字之和是9的倍数,只需要看最大的5的个数能否被9整数 #include <iostream& ...

  10. HttpClient工具类v1.7

    package com.cucpay.fundswap.util; import java.io.IOException; import java.net.SocketTimeoutException ...