test
Fork of nRF51822 by
source/btle/btle.cpp@549:3f782c64d014, 2016-01-11 (annotated)
- Committer:
- vcoubard
- Date:
- Mon Jan 11 10:19:06 2016 +0000
- Revision:
- 549:3f782c64d014
- Parent:
- 548:920e941cbe1e
- Child:
- 563:9c4b96f7be8d
Synchronized with git rev a5a46f2f
Author: Rohit Grover
Release 2.0.7
=============
* Fix a bug in the assembly sequence that starts the Nordic bootloader. With
GCC, a MOV instruction was getting converted into an ADDS, which came with
an unwanted side-effect of updating the XPSR. We relocated the offending MOV
instruction such that it would not affect a conditional branch statement.
This would show only with GCC, and when jumping to the bootloader while in
handler mode.
* Fix hardfaults generated from the handling of Radio Notification events.
Radio notification events are interrupts generated at very high priority.
They have the potential to pre-empt other interrupt handling, causing race
conditions when interrupted handlers were involved in calling into BLE_API.
Radio-notification events should defer their callback handling to low-
priority handlers through the use of Tickers or Timeouts.
* Introduce watchdog header file from Nordic SDK 8.1.
* Update license headers to reflect the latest licenses from Nordic.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
vcoubard | 541:884f95bf5351 | 1 | /* mbed Microcontroller Library |
vcoubard | 541:884f95bf5351 | 2 | * Copyright (c) 2006-2013 ARM Limited |
vcoubard | 541:884f95bf5351 | 3 | * |
vcoubard | 541:884f95bf5351 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
vcoubard | 541:884f95bf5351 | 5 | * you may not use this file except in compliance with the License. |
vcoubard | 541:884f95bf5351 | 6 | * You may obtain a copy of the License at |
vcoubard | 541:884f95bf5351 | 7 | * |
vcoubard | 541:884f95bf5351 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
vcoubard | 541:884f95bf5351 | 9 | * |
vcoubard | 541:884f95bf5351 | 10 | * Unless required by applicable law or agreed to in writing, software |
vcoubard | 541:884f95bf5351 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
vcoubard | 541:884f95bf5351 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
vcoubard | 541:884f95bf5351 | 13 | * See the License for the specific language governing permissions and |
vcoubard | 541:884f95bf5351 | 14 | * limitations under the License. |
vcoubard | 541:884f95bf5351 | 15 | */ |
vcoubard | 541:884f95bf5351 | 16 | |
vcoubard | 541:884f95bf5351 | 17 | #include "common/common.h" |
vcoubard | 541:884f95bf5351 | 18 | #include "nordic_common.h" |
vcoubard | 541:884f95bf5351 | 19 | |
vcoubard | 541:884f95bf5351 | 20 | #include "btle.h" |
vcoubard | 541:884f95bf5351 | 21 | |
vcoubard | 541:884f95bf5351 | 22 | #include "ble_flash.h" |
vcoubard | 541:884f95bf5351 | 23 | #include "ble_conn_params.h" |
vcoubard | 541:884f95bf5351 | 24 | |
vcoubard | 541:884f95bf5351 | 25 | #include "btle_gap.h" |
vcoubard | 541:884f95bf5351 | 26 | #include "btle_advertising.h" |
vcoubard | 541:884f95bf5351 | 27 | #include "custom/custom_helper.h" |
vcoubard | 541:884f95bf5351 | 28 | |
vcoubard | 541:884f95bf5351 | 29 | #include "ble/GapEvents.h" |
vcoubard | 541:884f95bf5351 | 30 | #include "nRF5xGap.h" |
vcoubard | 541:884f95bf5351 | 31 | #include "nRF5xGattServer.h" |
vcoubard | 541:884f95bf5351 | 32 | #include "nRF5xSecurityManager.h" |
vcoubard | 541:884f95bf5351 | 33 | |
vcoubard | 549:3f782c64d014 | 34 | extern "C" { |
vcoubard | 549:3f782c64d014 | 35 | #include "pstorage.h" |
vcoubard | 541:884f95bf5351 | 36 | #include "device_manager.h" |
vcoubard | 549:3f782c64d014 | 37 | #include "softdevice_handler.h" |
vcoubard | 549:3f782c64d014 | 38 | #include "ble_stack_handler_types.h" |
vcoubard | 549:3f782c64d014 | 39 | } |
vcoubard | 541:884f95bf5351 | 40 | |
vcoubard | 541:884f95bf5351 | 41 | #include "ble_hci.h" |
vcoubard | 541:884f95bf5351 | 42 | #include "btle_discovery.h" |
vcoubard | 541:884f95bf5351 | 43 | |
vcoubard | 541:884f95bf5351 | 44 | extern "C" void assert_nrf_callback(uint16_t line_num, const uint8_t *p_file_name); |
vcoubard | 541:884f95bf5351 | 45 | void app_error_handler(uint32_t error_code, uint32_t line_num, const uint8_t *p_file_name); |
vcoubard | 541:884f95bf5351 | 46 | |
vcoubard | 541:884f95bf5351 | 47 | static void btle_handler(ble_evt_t *p_ble_evt); |
vcoubard | 541:884f95bf5351 | 48 | |
vcoubard | 541:884f95bf5351 | 49 | static void sys_evt_dispatch(uint32_t sys_evt) |
vcoubard | 541:884f95bf5351 | 50 | { |
vcoubard | 541:884f95bf5351 | 51 | pstorage_sys_event_handler(sys_evt); |
vcoubard | 541:884f95bf5351 | 52 | } |
vcoubard | 541:884f95bf5351 | 53 | |
vcoubard | 541:884f95bf5351 | 54 | /** |
vcoubard | 541:884f95bf5351 | 55 | * This function is called in interrupt context to handle BLE events; i.e. pull |
vcoubard | 541:884f95bf5351 | 56 | * system and user events out of the pending events-queue of the BLE stack. The |
vcoubard | 541:884f95bf5351 | 57 | * BLE stack signals the availability of events by the triggering the SWI2 |
vcoubard | 541:884f95bf5351 | 58 | * interrupt, which forwards the handling to this function. |
vcoubard | 541:884f95bf5351 | 59 | * |
vcoubard | 541:884f95bf5351 | 60 | * The event processing loop is implemented in intern_softdevice_events_execute(). |
vcoubard | 541:884f95bf5351 | 61 | * |
vcoubard | 541:884f95bf5351 | 62 | * In mbed OS, a callback for intern_softdevice_events_execute() is posted |
vcoubard | 541:884f95bf5351 | 63 | * to the scheduler, which then executes in thread mode. In mbed-classic, |
vcoubard | 541:884f95bf5351 | 64 | * event processing happens right-away in interrupt context (which is more |
vcoubard | 541:884f95bf5351 | 65 | * risk-prone). In either case, the logic of event processing is identical. |
vcoubard | 541:884f95bf5351 | 66 | */ |
vcoubard | 541:884f95bf5351 | 67 | static uint32_t eventHandler() |
vcoubard | 541:884f95bf5351 | 68 | { |
vcoubard | 541:884f95bf5351 | 69 | #ifdef YOTTA_CFG_MBED_OS |
vcoubard | 541:884f95bf5351 | 70 | minar::Scheduler::postCallback(intern_softdevice_events_execute); |
vcoubard | 541:884f95bf5351 | 71 | #else |
vcoubard | 541:884f95bf5351 | 72 | intern_softdevice_events_execute(); |
vcoubard | 541:884f95bf5351 | 73 | #endif |
vcoubard | 541:884f95bf5351 | 74 | |
vcoubard | 541:884f95bf5351 | 75 | return NRF_SUCCESS; |
vcoubard | 541:884f95bf5351 | 76 | } |
vcoubard | 541:884f95bf5351 | 77 | |
vcoubard | 541:884f95bf5351 | 78 | error_t btle_init(void) |
vcoubard | 541:884f95bf5351 | 79 | { |
vcoubard | 541:884f95bf5351 | 80 | nrf_clock_lfclksrc_t clockSource; |
vcoubard | 541:884f95bf5351 | 81 | if (NRF_CLOCK->LFCLKSRC & (CLOCK_LFCLKSRC_SRC_Xtal << CLOCK_LFCLKSRC_SRC_Pos)) { |
vcoubard | 541:884f95bf5351 | 82 | clockSource = NRF_CLOCK_LFCLKSRC_XTAL_20_PPM; |
vcoubard | 541:884f95bf5351 | 83 | } else { |
vcoubard | 541:884f95bf5351 | 84 | clockSource = NRF_CLOCK_LFCLKSRC_RC_250_PPM_4000MS_CALIBRATION; |
vcoubard | 541:884f95bf5351 | 85 | } |
vcoubard | 541:884f95bf5351 | 86 | SOFTDEVICE_HANDLER_INIT(clockSource, eventHandler); |
vcoubard | 541:884f95bf5351 | 87 | |
vcoubard | 541:884f95bf5351 | 88 | // Enable BLE stack |
vcoubard | 541:884f95bf5351 | 89 | /** |
vcoubard | 541:884f95bf5351 | 90 | * Using this call, the application can select whether to include the |
vcoubard | 541:884f95bf5351 | 91 | * Service Changed characteristic in the GATT Server. The default in all |
vcoubard | 541:884f95bf5351 | 92 | * previous releases has been to include the Service Changed characteristic, |
vcoubard | 541:884f95bf5351 | 93 | * but this affects how GATT clients behave. Specifically, it requires |
vcoubard | 541:884f95bf5351 | 94 | * clients to subscribe to this attribute and not to cache attribute handles |
vcoubard | 541:884f95bf5351 | 95 | * between connections unless the devices are bonded. If the application |
vcoubard | 541:884f95bf5351 | 96 | * does not need to change the structure of the GATT server attributes at |
vcoubard | 541:884f95bf5351 | 97 | * runtime this adds unnecessary complexity to the interaction with peer |
vcoubard | 541:884f95bf5351 | 98 | * clients. If the SoftDevice is enabled with the Service Changed |
vcoubard | 541:884f95bf5351 | 99 | * Characteristics turned off, then clients are allowed to cache attribute |
vcoubard | 541:884f95bf5351 | 100 | * handles making applications simpler on both sides. |
vcoubard | 541:884f95bf5351 | 101 | */ |
vcoubard | 541:884f95bf5351 | 102 | static const bool IS_SRVC_CHANGED_CHARACT_PRESENT = true; |
vcoubard | 541:884f95bf5351 | 103 | ble_enable_params_t enableParams = { |
vcoubard | 541:884f95bf5351 | 104 | .gatts_enable_params = { |
vcoubard | 541:884f95bf5351 | 105 | .service_changed = IS_SRVC_CHANGED_CHARACT_PRESENT |
vcoubard | 541:884f95bf5351 | 106 | } |
vcoubard | 541:884f95bf5351 | 107 | }; |
vcoubard | 541:884f95bf5351 | 108 | if (sd_ble_enable(&enableParams) != NRF_SUCCESS) { |
vcoubard | 541:884f95bf5351 | 109 | return ERROR_INVALID_PARAM; |
vcoubard | 541:884f95bf5351 | 110 | } |
vcoubard | 541:884f95bf5351 | 111 | |
vcoubard | 541:884f95bf5351 | 112 | ble_gap_addr_t addr; |
vcoubard | 541:884f95bf5351 | 113 | if (sd_ble_gap_address_get(&addr) != NRF_SUCCESS) { |
vcoubard | 541:884f95bf5351 | 114 | return ERROR_INVALID_PARAM; |
vcoubard | 541:884f95bf5351 | 115 | } |
vcoubard | 541:884f95bf5351 | 116 | if (sd_ble_gap_address_set(BLE_GAP_ADDR_CYCLE_MODE_NONE, &addr) != NRF_SUCCESS) { |
vcoubard | 541:884f95bf5351 | 117 | return ERROR_INVALID_PARAM; |
vcoubard | 541:884f95bf5351 | 118 | } |
vcoubard | 541:884f95bf5351 | 119 | |
vcoubard | 541:884f95bf5351 | 120 | ASSERT_STATUS( softdevice_ble_evt_handler_set(btle_handler)); |
vcoubard | 541:884f95bf5351 | 121 | ASSERT_STATUS( softdevice_sys_evt_handler_set(sys_evt_dispatch)); |
vcoubard | 541:884f95bf5351 | 122 | |
vcoubard | 541:884f95bf5351 | 123 | btle_gap_init(); |
vcoubard | 541:884f95bf5351 | 124 | |
vcoubard | 541:884f95bf5351 | 125 | return ERROR_NONE; |
vcoubard | 541:884f95bf5351 | 126 | } |
vcoubard | 541:884f95bf5351 | 127 | |
vcoubard | 541:884f95bf5351 | 128 | static void btle_handler(ble_evt_t *p_ble_evt) |
vcoubard | 541:884f95bf5351 | 129 | { |
vcoubard | 541:884f95bf5351 | 130 | /* Library service handlers */ |
vcoubard | 541:884f95bf5351 | 131 | #if SDK_CONN_PARAMS_MODULE_ENABLE |
vcoubard | 541:884f95bf5351 | 132 | ble_conn_params_on_ble_evt(p_ble_evt); |
vcoubard | 541:884f95bf5351 | 133 | #endif |
vcoubard | 541:884f95bf5351 | 134 | |
vcoubard | 541:884f95bf5351 | 135 | dm_ble_evt_handler(p_ble_evt); |
vcoubard | 541:884f95bf5351 | 136 | |
vcoubard | 541:884f95bf5351 | 137 | #if !defined(TARGET_MCU_NRF51_16K_S110) && !defined(TARGET_MCU_NRF51_32K_S110) |
vcoubard | 541:884f95bf5351 | 138 | bleGattcEventHandler(p_ble_evt); |
vcoubard | 541:884f95bf5351 | 139 | #endif |
vcoubard | 541:884f95bf5351 | 140 | |
vcoubard | 541:884f95bf5351 | 141 | /* Custom event handler */ |
vcoubard | 541:884f95bf5351 | 142 | switch (p_ble_evt->header.evt_id) { |
vcoubard | 541:884f95bf5351 | 143 | case BLE_GAP_EVT_CONNECTED: { |
vcoubard | 541:884f95bf5351 | 144 | Gap::Handle_t handle = p_ble_evt->evt.gap_evt.conn_handle; |
vcoubard | 541:884f95bf5351 | 145 | #if defined(TARGET_MCU_NRF51_16K_S110) || defined(TARGET_MCU_NRF51_32K_S110) |
vcoubard | 541:884f95bf5351 | 146 | /* Only peripheral role is supported by S110 */ |
vcoubard | 541:884f95bf5351 | 147 | Gap::Role_t role = Gap::PERIPHERAL; |
vcoubard | 541:884f95bf5351 | 148 | #else |
vcoubard | 541:884f95bf5351 | 149 | Gap::Role_t role = static_cast<Gap::Role_t>(p_ble_evt->evt.gap_evt.params.connected.role); |
vcoubard | 541:884f95bf5351 | 150 | #endif |
vcoubard | 541:884f95bf5351 | 151 | nRF5xGap::getInstance().setConnectionHandle(handle); |
vcoubard | 541:884f95bf5351 | 152 | const Gap::ConnectionParams_t *params = reinterpret_cast<Gap::ConnectionParams_t *>(&(p_ble_evt->evt.gap_evt.params.connected.conn_params)); |
vcoubard | 541:884f95bf5351 | 153 | const ble_gap_addr_t *peer = &p_ble_evt->evt.gap_evt.params.connected.peer_addr; |
vcoubard | 541:884f95bf5351 | 154 | const ble_gap_addr_t *own = &p_ble_evt->evt.gap_evt.params.connected.own_addr; |
vcoubard | 541:884f95bf5351 | 155 | nRF5xGap::getInstance().processConnectionEvent(handle, |
vcoubard | 541:884f95bf5351 | 156 | role, |
vcoubard | 541:884f95bf5351 | 157 | static_cast<Gap::AddressType_t>(peer->addr_type), peer->addr, |
vcoubard | 541:884f95bf5351 | 158 | static_cast<Gap::AddressType_t>(own->addr_type), own->addr, |
vcoubard | 541:884f95bf5351 | 159 | params); |
vcoubard | 541:884f95bf5351 | 160 | break; |
vcoubard | 541:884f95bf5351 | 161 | } |
vcoubard | 541:884f95bf5351 | 162 | |
vcoubard | 541:884f95bf5351 | 163 | case BLE_GAP_EVT_DISCONNECTED: { |
vcoubard | 541:884f95bf5351 | 164 | Gap::Handle_t handle = p_ble_evt->evt.gap_evt.conn_handle; |
vcoubard | 541:884f95bf5351 | 165 | // Since we are not in a connection and have not started advertising, |
vcoubard | 541:884f95bf5351 | 166 | // store bonds |
vcoubard | 541:884f95bf5351 | 167 | nRF5xGap::getInstance().setConnectionHandle (BLE_CONN_HANDLE_INVALID); |
vcoubard | 541:884f95bf5351 | 168 | |
vcoubard | 541:884f95bf5351 | 169 | Gap::DisconnectionReason_t reason; |
vcoubard | 541:884f95bf5351 | 170 | switch (p_ble_evt->evt.gap_evt.params.disconnected.reason) { |
vcoubard | 541:884f95bf5351 | 171 | case BLE_HCI_LOCAL_HOST_TERMINATED_CONNECTION: |
vcoubard | 541:884f95bf5351 | 172 | reason = Gap::LOCAL_HOST_TERMINATED_CONNECTION; |
vcoubard | 541:884f95bf5351 | 173 | break; |
vcoubard | 541:884f95bf5351 | 174 | case BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION: |
vcoubard | 541:884f95bf5351 | 175 | reason = Gap::REMOTE_USER_TERMINATED_CONNECTION; |
vcoubard | 541:884f95bf5351 | 176 | break; |
vcoubard | 541:884f95bf5351 | 177 | case BLE_HCI_CONN_INTERVAL_UNACCEPTABLE: |
vcoubard | 541:884f95bf5351 | 178 | reason = Gap::CONN_INTERVAL_UNACCEPTABLE; |
vcoubard | 541:884f95bf5351 | 179 | break; |
vcoubard | 541:884f95bf5351 | 180 | default: |
vcoubard | 541:884f95bf5351 | 181 | /* Please refer to the underlying transport library for an |
vcoubard | 541:884f95bf5351 | 182 | * interpretion of this reason's value. */ |
vcoubard | 541:884f95bf5351 | 183 | reason = static_cast<Gap::DisconnectionReason_t>(p_ble_evt->evt.gap_evt.params.disconnected.reason); |
vcoubard | 541:884f95bf5351 | 184 | break; |
vcoubard | 541:884f95bf5351 | 185 | } |
vcoubard | 541:884f95bf5351 | 186 | nRF5xGap::getInstance().processDisconnectionEvent(handle, reason); |
vcoubard | 541:884f95bf5351 | 187 | break; |
vcoubard | 541:884f95bf5351 | 188 | } |
vcoubard | 541:884f95bf5351 | 189 | |
vcoubard | 541:884f95bf5351 | 190 | case BLE_GAP_EVT_PASSKEY_DISPLAY: |
vcoubard | 541:884f95bf5351 | 191 | nRF5xSecurityManager::getInstance().processPasskeyDisplayEvent(p_ble_evt->evt.gap_evt.conn_handle, p_ble_evt->evt.gap_evt.params.passkey_display.passkey); |
vcoubard | 541:884f95bf5351 | 192 | break; |
vcoubard | 541:884f95bf5351 | 193 | |
vcoubard | 541:884f95bf5351 | 194 | case BLE_GAP_EVT_TIMEOUT: |
vcoubard | 541:884f95bf5351 | 195 | nRF5xGap::getInstance().processTimeoutEvent(static_cast<Gap::TimeoutSource_t>(p_ble_evt->evt.gap_evt.params.timeout.src)); |
vcoubard | 541:884f95bf5351 | 196 | break; |
vcoubard | 541:884f95bf5351 | 197 | |
vcoubard | 541:884f95bf5351 | 198 | case BLE_GATTC_EVT_TIMEOUT: |
vcoubard | 541:884f95bf5351 | 199 | case BLE_GATTS_EVT_TIMEOUT: |
vcoubard | 541:884f95bf5351 | 200 | // Disconnect on GATT Server and Client timeout events. |
vcoubard | 541:884f95bf5351 | 201 | // ASSERT_STATUS_RET_VOID (sd_ble_gap_disconnect(m_conn_handle, |
vcoubard | 541:884f95bf5351 | 202 | // BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION)); |
vcoubard | 541:884f95bf5351 | 203 | break; |
vcoubard | 541:884f95bf5351 | 204 | |
vcoubard | 541:884f95bf5351 | 205 | case BLE_GAP_EVT_ADV_REPORT: { |
vcoubard | 541:884f95bf5351 | 206 | const ble_gap_evt_adv_report_t *advReport = &p_ble_evt->evt.gap_evt.params.adv_report; |
vcoubard | 541:884f95bf5351 | 207 | nRF5xGap::getInstance().processAdvertisementReport(advReport->peer_addr.addr, |
vcoubard | 541:884f95bf5351 | 208 | advReport->rssi, |
vcoubard | 541:884f95bf5351 | 209 | advReport->scan_rsp, |
vcoubard | 541:884f95bf5351 | 210 | static_cast<GapAdvertisingParams::AdvertisingType_t>(advReport->type), |
vcoubard | 541:884f95bf5351 | 211 | advReport->dlen, |
vcoubard | 541:884f95bf5351 | 212 | advReport->data); |
vcoubard | 541:884f95bf5351 | 213 | break; |
vcoubard | 541:884f95bf5351 | 214 | } |
vcoubard | 541:884f95bf5351 | 215 | |
vcoubard | 541:884f95bf5351 | 216 | default: |
vcoubard | 541:884f95bf5351 | 217 | break; |
vcoubard | 541:884f95bf5351 | 218 | } |
vcoubard | 541:884f95bf5351 | 219 | |
vcoubard | 541:884f95bf5351 | 220 | nRF5xGattServer::getInstance().hwCallback(p_ble_evt); |
vcoubard | 541:884f95bf5351 | 221 | } |
vcoubard | 541:884f95bf5351 | 222 | |
vcoubard | 541:884f95bf5351 | 223 | /*! @brief Callback when an error occurs inside the SoftDevice */ |
vcoubard | 541:884f95bf5351 | 224 | void assert_nrf_callback(uint16_t line_num, const uint8_t *p_file_name) |
vcoubard | 541:884f95bf5351 | 225 | { |
vcoubard | 541:884f95bf5351 | 226 | ASSERT(false, (void) 0); |
vcoubard | 541:884f95bf5351 | 227 | } |
vcoubard | 541:884f95bf5351 | 228 | |
vcoubard | 541:884f95bf5351 | 229 | /*! |
vcoubard | 541:884f95bf5351 | 230 | @brief Handler for general errors above the SoftDevice layer. |
vcoubard | 541:884f95bf5351 | 231 | Typically we can' recover from this so we do a reset. |
vcoubard | 541:884f95bf5351 | 232 | */ |
vcoubard | 541:884f95bf5351 | 233 | void app_error_handler(uint32_t error_code, uint32_t line_num, const uint8_t *p_file_name) |
vcoubard | 541:884f95bf5351 | 234 | { |
vcoubard | 541:884f95bf5351 | 235 | ASSERT_STATUS_RET_VOID( error_code ); |
vcoubard | 541:884f95bf5351 | 236 | NVIC_SystemReset(); |
rgrover1 | 77:9886b2865631 | 237 | } |