BLE FOTA APP

Dependencies:   BLE_API mbed

It doesn't work with the default FOTA bootloader. It use NVIC_SystemReset() to enter a bootloader.

Committer:
yihui
Date:
Fri Oct 10 03:36:28 2014 +0000
Revision:
1:a607cd9655d7
use NVIC_SystemReset() to run bootloader

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yihui 1:a607cd9655d7 1 /* mbed Microcontroller Library
yihui 1:a607cd9655d7 2 * Copyright (c) 2006-2013 ARM Limited
yihui 1:a607cd9655d7 3 *
yihui 1:a607cd9655d7 4 * Licensed under the Apache License, Version 2.0 (the "License");
yihui 1:a607cd9655d7 5 * you may not use this file except in compliance with the License.
yihui 1:a607cd9655d7 6 * You may obtain a copy of the License at
yihui 1:a607cd9655d7 7 *
yihui 1:a607cd9655d7 8 * http://www.apache.org/licenses/LICENSE-2.0
yihui 1:a607cd9655d7 9 *
yihui 1:a607cd9655d7 10 * Unless required by applicable law or agreed to in writing, software
yihui 1:a607cd9655d7 11 * distributed under the License is distributed on an "AS IS" BASIS,
yihui 1:a607cd9655d7 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
yihui 1:a607cd9655d7 13 * See the License for the specific language governing permissions and
yihui 1:a607cd9655d7 14 * limitations under the License.
yihui 1:a607cd9655d7 15 */
yihui 1:a607cd9655d7 16 #include "common/common.h"
yihui 1:a607cd9655d7 17
yihui 1:a607cd9655d7 18 #include "ble_advdata.h"
yihui 1:a607cd9655d7 19 #include "btle.h"
yihui 1:a607cd9655d7 20
yihui 1:a607cd9655d7 21 /**************************************************************************/
yihui 1:a607cd9655d7 22 /*!
yihui 1:a607cd9655d7 23 @brief Starts the advertising process
yihui 1:a607cd9655d7 24
yihui 1:a607cd9655d7 25 @returns
yihui 1:a607cd9655d7 26 */
yihui 1:a607cd9655d7 27 /**************************************************************************/
yihui 1:a607cd9655d7 28 error_t btle_advertising_start(void)
yihui 1:a607cd9655d7 29 {
yihui 1:a607cd9655d7 30 ble_gap_adv_params_t adv_para = {0};
yihui 1:a607cd9655d7 31
yihui 1:a607cd9655d7 32 /* Set the default advertising parameters */
yihui 1:a607cd9655d7 33 adv_para.type = BLE_GAP_ADV_TYPE_ADV_IND;
yihui 1:a607cd9655d7 34 adv_para.p_peer_addr = NULL; /* Undirected advertising */
yihui 1:a607cd9655d7 35 adv_para.fp = BLE_GAP_ADV_FP_ANY;
yihui 1:a607cd9655d7 36 adv_para.p_whitelist = NULL;
yihui 1:a607cd9655d7 37 adv_para.interval = (CFG_GAP_ADV_INTERVAL_MS * 8) / 5; /* Advertising
yihui 1:a607cd9655d7 38 * interval in
yihui 1:a607cd9655d7 39 * units of 0.625
yihui 1:a607cd9655d7 40 * ms */
yihui 1:a607cd9655d7 41 adv_para.timeout = CFG_GAP_ADV_TIMEOUT_S;
yihui 1:a607cd9655d7 42
yihui 1:a607cd9655d7 43 ASSERT_STATUS( sd_ble_gap_adv_start(&adv_para));
yihui 1:a607cd9655d7 44
yihui 1:a607cd9655d7 45 return ERROR_NONE;
yihui 1:a607cd9655d7 46 }