Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
bootloader_util.h
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 /**@} */
Generated on Tue Jul 12 2022 18:47:32 by
