テスト用です。

Dependencies:   mbed

Committer:
jksoft
Date:
Tue Oct 11 11:09:42 2016 +0000
Revision:
0:8468a4403fea
SB??ver;

Who changed what in which revision?

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