Nordic nrf51 sdk sources. Mirrored from https://github.com/ARMmbed/nrf51-sdk.

Dependents:   nRF51822 nRF51822

Committer:
vcoubard
Date:
Thu Apr 07 17:37:40 2016 +0100
Revision:
19:47192cb9def7
Parent:
10:233fefd8162b
Child:
20:a90c48eb1d30
Synchronized with git rev 9251259f
Author: Liyou Zhou
Copy over coresponding files from nordic-sdk 9.0.0

Who changed what in which revision?

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