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 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
yihui 1:a607cd9655d7 2 *
yihui 1:a607cd9655d7 3 * The information contained herein is property of Nordic Semiconductor ASA.
yihui 1:a607cd9655d7 4 * Terms and conditions of usage are described in detail in NORDIC
yihui 1:a607cd9655d7 5 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
yihui 1:a607cd9655d7 6 *
yihui 1:a607cd9655d7 7 * Licensees are granted free, non-transferable use of the information. NO
yihui 1:a607cd9655d7 8 * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
yihui 1:a607cd9655d7 9 * the file.
yihui 1:a607cd9655d7 10 *
yihui 1:a607cd9655d7 11 */
yihui 1:a607cd9655d7 12
yihui 1:a607cd9655d7 13 /** @file
yihui 1:a607cd9655d7 14 *
yihui 1:a607cd9655d7 15 * @defgroup memory_pool_internal Memory Pool Internal
yihui 1:a607cd9655d7 16 * @{
yihui 1:a607cd9655d7 17 * @ingroup memory_pool
yihui 1:a607cd9655d7 18 *
yihui 1:a607cd9655d7 19 * @brief Memory pool internal definitions
yihui 1:a607cd9655d7 20 */
yihui 1:a607cd9655d7 21
yihui 1:a607cd9655d7 22 #ifndef MEM_POOL_INTERNAL_H__
yihui 1:a607cd9655d7 23 #define MEM_POOL_INTERNAL_H__
yihui 1:a607cd9655d7 24
yihui 1:a607cd9655d7 25 #define TX_BUF_SIZE 600u /**< TX buffer size in bytes. */
yihui 1:a607cd9655d7 26 #define RX_BUF_SIZE TX_BUF_SIZE /**< RX buffer size in bytes. */
yihui 1:a607cd9655d7 27
yihui 1:a607cd9655d7 28 #define RX_BUF_QUEUE_SIZE 4u /**< RX buffer element size. */
yihui 1:a607cd9655d7 29
yihui 1:a607cd9655d7 30 #endif // MEM_POOL_INTERNAL_H__
yihui 1:a607cd9655d7 31
yihui 1:a607cd9655d7 32 /** @} */