/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:
Fri Jul 25 09:46:51 2014 +0100
Revision:
87:6213f644d804
Release 87 of the mbed library

Main changes:

- error.h renamed to mbed_error.h to avoid name clashes
- upgraded to V7 of the nRF51822 soft-device 110
- New targets: HRM107
- Improved test infrastructure
- Bug fixes on various targets

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 87:6213f644d804 1 /*
bogdanm 87:6213f644d804 2 * Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
bogdanm 87:6213f644d804 3 *
bogdanm 87:6213f644d804 4 * The information contained herein is confidential property of Nordic Semiconductor. The use,
bogdanm 87:6213f644d804 5 * copying, transfer or disclosure of such information is prohibited except by express written
bogdanm 87:6213f644d804 6 * agreement with Nordic Semiconductor.
bogdanm 87:6213f644d804 7 *
bogdanm 87:6213f644d804 8 */
bogdanm 87:6213f644d804 9 /**
bogdanm 87:6213f644d804 10 @addtogroup BLE_COMMON
bogdanm 87:6213f644d804 11 @{
bogdanm 87:6213f644d804 12 @addtogroup nrf_error
bogdanm 87:6213f644d804 13 @{
bogdanm 87:6213f644d804 14 @ingroup BLE_COMMON
bogdanm 87:6213f644d804 15 @}
bogdanm 87:6213f644d804 16
bogdanm 87:6213f644d804 17 @defgroup ble_err General error codes
bogdanm 87:6213f644d804 18 @{
bogdanm 87:6213f644d804 19
bogdanm 87:6213f644d804 20 @brief General error code definitions for the BLE API.
bogdanm 87:6213f644d804 21
bogdanm 87:6213f644d804 22 @ingroup BLE_COMMON
bogdanm 87:6213f644d804 23 */
bogdanm 87:6213f644d804 24 #ifndef NRF_BLE_ERR_H__
bogdanm 87:6213f644d804 25 #define NRF_BLE_ERR_H__
bogdanm 87:6213f644d804 26
bogdanm 87:6213f644d804 27 #include "nrf_error.h"
bogdanm 87:6213f644d804 28
bogdanm 87:6213f644d804 29 /* @defgroup BLE_ERRORS Error Codes
bogdanm 87:6213f644d804 30 * @{ */
bogdanm 87:6213f644d804 31 #define BLE_ERROR_NOT_ENABLED (NRF_ERROR_STK_BASE_NUM+0x001) /**< @ref sd_ble_enable has not been called. */
bogdanm 87:6213f644d804 32 #define BLE_ERROR_INVALID_CONN_HANDLE (NRF_ERROR_STK_BASE_NUM+0x002) /**< Invalid connection handle. */
bogdanm 87:6213f644d804 33 #define BLE_ERROR_INVALID_ATTR_HANDLE (NRF_ERROR_STK_BASE_NUM+0x003) /**< Invalid attribute handle. */
bogdanm 87:6213f644d804 34 #define BLE_ERROR_NO_TX_BUFFERS (NRF_ERROR_STK_BASE_NUM+0x004) /**< Buffer capacity exceeded. */
bogdanm 87:6213f644d804 35 /** @} */
bogdanm 87:6213f644d804 36
bogdanm 87:6213f644d804 37
bogdanm 87:6213f644d804 38 /** @defgroup BLE_ERROR_SUBRANGES Module specific error code subranges
bogdanm 87:6213f644d804 39 * @brief Assignment of subranges for module specific error codes.
bogdanm 87:6213f644d804 40 * @note For specific error codes, see ble_<module>.h or ble_error_<module>.h.
bogdanm 87:6213f644d804 41 * @{ */
bogdanm 87:6213f644d804 42 #define NRF_L2CAP_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x100) /**< L2CAP specific errors. */
bogdanm 87:6213f644d804 43 #define NRF_GAP_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x200) /**< GAP specific errors. */
bogdanm 87:6213f644d804 44 #define NRF_GATTC_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x300) /**< GATT client specific errors. */
bogdanm 87:6213f644d804 45 #define NRF_GATTS_ERR_BASE (NRF_ERROR_STK_BASE_NUM+0x400) /**< GATT server specific errors. */
bogdanm 87:6213f644d804 46 /** @} */
bogdanm 87:6213f644d804 47
bogdanm 87:6213f644d804 48 #endif
bogdanm 87:6213f644d804 49
bogdanm 87:6213f644d804 50
bogdanm 87:6213f644d804 51 /**
bogdanm 87:6213f644d804 52 @}
bogdanm 87:6213f644d804 53 @}
bogdanm 87:6213f644d804 54 */