/TARGET_K64F/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/hal/adc/fsl_adc_hal.h substitute line 894 extern } by }

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Mon Apr 07 18:28:36 2014 +0100
Revision:
82:6473597d706e
Release 82 of the mbed library

Main changes:

- support for K64F
- Revisited Nordic code structure
- Test infrastructure improvements
- various bug 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 BLE_COMMON
bogdanm 82:6473597d706e 11 @{
bogdanm 82:6473597d706e 12 @addtogroup nrf_error
bogdanm 82:6473597d706e 13 @{
bogdanm 82:6473597d706e 14 @ingroup BLE_COMMON
bogdanm 82:6473597d706e 15 @}
bogdanm 82:6473597d706e 16
bogdanm 82:6473597d706e 17 @defgroup ble_err General error codes
bogdanm 82:6473597d706e 18 @{
bogdanm 82:6473597d706e 19
bogdanm 82:6473597d706e 20 @brief General error code definitions for the BLE API.
bogdanm 82:6473597d706e 21
bogdanm 82:6473597d706e 22 @ingroup BLE_COMMON
bogdanm 82:6473597d706e 23 */
bogdanm 82:6473597d706e 24 #ifndef NRF_BLE_ERR_H__
bogdanm 82:6473597d706e 25 #define NRF_BLE_ERR_H__
bogdanm 82:6473597d706e 26
bogdanm 82:6473597d706e 27 #include "nrf_error.h"
bogdanm 82:6473597d706e 28
bogdanm 82:6473597d706e 29 /* @defgroup BLE_ERRORS Error Codes
bogdanm 82:6473597d706e 30 * @{ */
bogdanm 82:6473597d706e 31 #define BLE_ERROR_INVALID_CONN_HANDLE (NRF_ERROR_STK_BASE_NUM+0x001) /**< Invalid connection handle. */
bogdanm 82:6473597d706e 32 #define BLE_ERROR_INVALID_ATTR_HANDLE (NRF_ERROR_STK_BASE_NUM+0x002) /**< Invalid attribute handle. */
bogdanm 82:6473597d706e 33 #define BLE_ERROR_NO_TX_BUFFERS (NRF_ERROR_STK_BASE_NUM+0x003) /**< Buffer capacity exceeded. */
bogdanm 82:6473597d706e 34 /** @} */
bogdanm 82:6473597d706e 35
bogdanm 82:6473597d706e 36
bogdanm 82:6473597d706e 37 /** @defgroup BLE_ERROR_SUBRANGES Module specific error code subranges
bogdanm 82:6473597d706e 38 * @brief Assignment of subranges for module specific error codes.
bogdanm 82:6473597d706e 39 * @note For specific error codes, see ble_<module>.h or ble_error_<module>.h.
bogdanm 82:6473597d706e 40 * @{ */
bogdanm 82:6473597d706e 41 #define NRF_L2CAP_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x100) /**< L2CAP specific errors. */
bogdanm 82:6473597d706e 42 #define NRF_GAP_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x200) /**< GAP specific errors. */
bogdanm 82:6473597d706e 43 #define NRF_GATTC_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x300) /**< GATT client specific errors. */
bogdanm 82:6473597d706e 44 #define NRF_GATTS_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x400) /**< GATT server specific errors. */
bogdanm 82:6473597d706e 45 /** @} */
bogdanm 82:6473597d706e 46
bogdanm 82:6473597d706e 47 #endif
bogdanm 82:6473597d706e 48
bogdanm 82:6473597d706e 49
bogdanm 82:6473597d706e 50 /**
bogdanm 82:6473597d706e 51 @}
bogdanm 82:6473597d706e 52 @}
bogdanm 82:6473597d706e 53 */