meh

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Fri Aug 15 15:28:31 2014 +0100
Revision:
88:9327015d4013
Parent:
TARGET_NRF51822/TARGET_NORDIC/TARGET_NRF51822/Lib/s110_nrf51822_7_0_0/s110_nrf51822_7.0.0_API/include/nrf_error_sdm.h@87:6213f644d804
Release 88 of the mbed library

Main changes:

- changed "error.h" to "mbed_error.h" to avoid conflicts with 3rd party code
- LPC1549 SPI driver fixes
- K64F Ethernet TX buffer reclaim mechanism fix
- STDIO initialization fix
- NUCLEO_F334R8 I2C clock fix
- various other fixes

Who changed what in which revision?

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