Nordic stack and drivers for the mbed BLE API

Dependents:   idd_hw5_bleFanProto

Fork of nRF51822 by Nordic Semiconductor

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers bootloader_util.h Source File

bootloader_util.h

Go to the documentation of this file.
00001 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
00002  *
00003  * The information contained herein is property of Nordic Semiconductor ASA.
00004  * Terms and conditions of usage are described in detail in NORDIC
00005  * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
00006  *
00007  * Licensees are granted free, non-transferable use of the information. NO
00008  * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
00009  * the file.
00010  *
00011  */
00012 
00013  /**@file
00014  *
00015  * @defgroup nrf_bootloader_util Bootloader util API.
00016  * @{     
00017  *  
00018  * @brief Bootloader util module interface.
00019  */
00020  
00021 #ifndef BOOTLOADER_UTIL_H__
00022 #define BOOTLOADER_UTIL_H__
00023 
00024 #include <stdint.h>
00025 #include "bootloader_types.h "
00026 
00027 /**@brief Function for starting the application (or bootloader) at the provided address.
00028  * 
00029  * @param[in]  start_addr             Start address.
00030  *
00031  * @note This function will never retrun. Instead it will reset into the application of the 
00032  *       provided address.
00033  */
00034 void bootloader_util_app_start(uint32_t start_addr);
00035 
00036 #endif // BOOTLOADER_UTIL_H__
00037 
00038 /**@} */