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 nrf_error_sdm.h Source File

nrf_error_sdm.h

00001 /*
00002  * Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
00003  *
00004  * The information contained herein is confidential property of Nordic Semiconductor. The use,
00005  * copying, transfer or disclosure of such information is prohibited except by express written
00006  * agreement with Nordic Semiconductor.
00007  *
00008  */
00009  /**
00010   @addtogroup nrf_sdm_api
00011   @{
00012   @defgroup nrf_sdm_error SoftDevice Manager Error Codes
00013   @{
00014      
00015   @brief Error definitions for the SDM API
00016 */
00017 
00018 /* Header guard */
00019 #ifndef NRF_ERROR_SDM_H__
00020 #define NRF_ERROR_SDM_H__
00021 
00022 #include "nrf_error.h"
00023 
00024 #define NRF_ERROR_SDM_LFCLK_SOURCE_UNKNOWN              (NRF_ERROR_SDM_BASE_NUM + 0)  ///< Unknown lfclk source
00025 #define NRF_ERROR_SDM_INCORRECT_INTERRUPT_CONFIGURATION (NRF_ERROR_SDM_BASE_NUM + 1)  ///< Incorrect interrupt configuration (can be caused by using illegal priority levels, or having enabled SoftDevice interrupts)
00026 #define NRF_ERROR_SDM_INCORRECT_CLENR0                  (NRF_ERROR_SDM_BASE_NUM + 2)  ///< Incorrect CLENR0 (can be caused by erronous SoftDevice flashing)
00027 
00028 #endif // NRF_ERROR_SDM_H__
00029 
00030 /**
00031   @}
00032   @}
00033 */