mbed library sources

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Tue Mar 18 12:30:07 2014 +0000
Revision:
123:8a356fb1000a
Parent:
targets/hal/TARGET_NORDIC/TARGET_NRF51822/Lib/s110_nrf51822_6.0.0/s110_nrf51822_6.0.0_API/include/nrf_error_sdm.h@104:a6a92e2e5a92
Synchronized with git revision 3e40310534d854400e01b2e9612ef7edf44a2dc9

Full URL: https://github.com/mbedmicro/mbed/commit/3e40310534d854400e01b2e9612ef7edf44a2dc9/

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 104:a6a92e2e5a92 1 /*
mbed_official 104:a6a92e2e5a92 2 * Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
mbed_official 104:a6a92e2e5a92 3 *
mbed_official 104:a6a92e2e5a92 4 * The information contained herein is confidential property of Nordic Semiconductor. The use,
mbed_official 104:a6a92e2e5a92 5 * copying, transfer or disclosure of such information is prohibited except by express written
mbed_official 104:a6a92e2e5a92 6 * agreement with Nordic Semiconductor.
mbed_official 104:a6a92e2e5a92 7 *
mbed_official 104:a6a92e2e5a92 8 */
mbed_official 104:a6a92e2e5a92 9 /**
mbed_official 104:a6a92e2e5a92 10 @addtogroup nrf_sdm_api
mbed_official 104:a6a92e2e5a92 11 @{
mbed_official 104:a6a92e2e5a92 12 @defgroup nrf_sdm_error SoftDevice Manager Error Codes
mbed_official 104:a6a92e2e5a92 13 @{
mbed_official 104:a6a92e2e5a92 14
mbed_official 104:a6a92e2e5a92 15 @brief Error definitions for the SDM API
mbed_official 104:a6a92e2e5a92 16 */
mbed_official 104:a6a92e2e5a92 17
mbed_official 104:a6a92e2e5a92 18 /* Header guard */
mbed_official 104:a6a92e2e5a92 19 #ifndef NRF_ERROR_SDM_H__
mbed_official 104:a6a92e2e5a92 20 #define NRF_ERROR_SDM_H__
mbed_official 104:a6a92e2e5a92 21
mbed_official 104:a6a92e2e5a92 22 #include "nrf_error.h"
mbed_official 104:a6a92e2e5a92 23
mbed_official 104:a6a92e2e5a92 24 #define NRF_ERROR_SDM_LFCLK_SOURCE_UNKNOWN (NRF_ERROR_SDM_BASE_NUM + 0) ///< Unknown lfclk source
mbed_official 104:a6a92e2e5a92 25 #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)
mbed_official 104:a6a92e2e5a92 26 #define NRF_ERROR_SDM_INCORRECT_CLENR0 (NRF_ERROR_SDM_BASE_NUM + 2) ///< Incorrect CLENR0 (can be caused by erronous SoftDevice flashing)
mbed_official 104:a6a92e2e5a92 27
mbed_official 104:a6a92e2e5a92 28 #endif // NRF_ERROR_SDM_H__
mbed_official 104:a6a92e2e5a92 29
mbed_official 104:a6a92e2e5a92 30 /**
mbed_official 104:a6a92e2e5a92 31 @}
mbed_official 104:a6a92e2e5a92 32 @}
mbed_official 104:a6a92e2e5a92 33 */