テスト用

Fork of nRF51822 by Nordic Semiconductor

Committer:
Rohit Grover
Date:
Fri Sep 26 14:46:19 2014 +0100
Revision:
69:936d81c963fe
Parent:
66:b3680699d9a4
Release 0.2.1
=============

Features
~~~~~~~~

- Turn on the service-changed characteristic by default.

Bugfixes
~~~~~~~~

- Raised the maximum number of supported characteristics/descriptors to 24
(was 10 previously). We're beginning to find services like Device-
Information with several characteristics populated.

Compatibility
~~~~~~~~~~~~~

Works with 0.2.0 of BLE_API.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Rohit Grover 66:b3680699d9a4 1 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
Rohit Grover 66:b3680699d9a4 2 *
Rohit Grover 66:b3680699d9a4 3 * The information contained herein is property of Nordic Semiconductor ASA.
Rohit Grover 66:b3680699d9a4 4 * Terms and conditions of usage are described in detail in NORDIC
Rohit Grover 66:b3680699d9a4 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
Rohit Grover 66:b3680699d9a4 6 *
Rohit Grover 66:b3680699d9a4 7 * Licensees are granted free, non-transferable use of the information. NO
Rohit Grover 66:b3680699d9a4 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
Rohit Grover 66:b3680699d9a4 9 * the file.
Rohit Grover 66:b3680699d9a4 10 *
Rohit Grover 66:b3680699d9a4 11 */
Rohit Grover 66:b3680699d9a4 12
Rohit Grover 66:b3680699d9a4 13 /**@file
Rohit Grover 66:b3680699d9a4 14 *
Rohit Grover 66:b3680699d9a4 15 * @defgroup nrf_bootloader_util Bootloader util API.
Rohit Grover 66:b3680699d9a4 16 * @{
Rohit Grover 66:b3680699d9a4 17 *
Rohit Grover 66:b3680699d9a4 18 * @brief Bootloader util module interface.
Rohit Grover 66:b3680699d9a4 19 */
Rohit Grover 66:b3680699d9a4 20
Rohit Grover 66:b3680699d9a4 21 #ifndef BOOTLOADER_UTIL_H__
Rohit Grover 66:b3680699d9a4 22 #define BOOTLOADER_UTIL_H__
Rohit Grover 66:b3680699d9a4 23
Rohit Grover 66:b3680699d9a4 24 #include <stdint.h>
Rohit Grover 66:b3680699d9a4 25 #include "bootloader_types.h"
Rohit Grover 66:b3680699d9a4 26
Rohit Grover 66:b3680699d9a4 27 /**@brief Function for starting the application (or bootloader) at the provided address.
Rohit Grover 66:b3680699d9a4 28 *
Rohit Grover 66:b3680699d9a4 29 * @param[in] start_addr Start address.
Rohit Grover 66:b3680699d9a4 30 *
Rohit Grover 66:b3680699d9a4 31 * @note This function will never retrun. Instead it will reset into the application of the
Rohit Grover 66:b3680699d9a4 32 * provided address.
Rohit Grover 66:b3680699d9a4 33 */
Rohit Grover 66:b3680699d9a4 34 void bootloader_util_app_start(uint32_t start_addr);
Rohit Grover 66:b3680699d9a4 35
Rohit Grover 66:b3680699d9a4 36 #endif // BOOTLOADER_UTIL_H__
Rohit Grover 66:b3680699d9a4 37
Rohit Grover 66:b3680699d9a4 38 /**@} */