Patched version of nrf51822 FOTA compatible driver, with GPTIO disabled, as it clashed with the mbed definitions...

Fork of nRF51822 by Nordic Semiconductor

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dfu_transport.h Source File

dfu_transport.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_dfu_transport DFU transport API.
00016  * @{     
00017  *  
00018  * @brief DFU transport module interface.
00019  */
00020  
00021 #ifndef DFU_TRANSPORT_H__
00022 #define DFU_TRANSPORT_H__
00023 
00024 #include <stdint.h>
00025 
00026 /**@brief Function for starting the update of Device Firmware.
00027  *
00028  * @retval NRF_SUCCESS Operation success.   
00029  */
00030 uint32_t dfu_transport_update_start(void);
00031 
00032 /**@brief Function for closing the transport layer.
00033  *
00034  * @retval NRF_SUCCESS Operation success.    
00035  */
00036 uint32_t dfu_transport_close(void);
00037 
00038 #endif // DFU_TRANSPORT_H__
00039 
00040 /**@} */