Nordic stack and drivers for the mbed BLE API

Fork of nRF51822 by Nordic Semiconductor

Committer:
todotani
Date:
Fri Sep 05 14:20:55 2014 +0000
Revision:
61:214f61f4d5f8
Parent:
0:eff01767de02
BLE_Health_Thermometer for mbed HRM1017 with BLE library 0.1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 0:eff01767de02 1 /*
bogdanm 0:eff01767de02 2 * Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved.
bogdanm 0:eff01767de02 3 *
bogdanm 0:eff01767de02 4 * The information contained herein is confidential property of Nordic Semiconductor. The use,
bogdanm 0:eff01767de02 5 * copying, transfer or disclosure of such information is prohibited except by express written
bogdanm 0:eff01767de02 6 * agreement with Nordic Semiconductor.
bogdanm 0:eff01767de02 7 *
bogdanm 0:eff01767de02 8 */
bogdanm 0:eff01767de02 9 /**
bogdanm 0:eff01767de02 10 @addtogroup nrf_soc_api
bogdanm 0:eff01767de02 11 @{
bogdanm 0:eff01767de02 12 @defgroup nrf_soc_error SoC Library Error Codes
bogdanm 0:eff01767de02 13 @{
bogdanm 0:eff01767de02 14
bogdanm 0:eff01767de02 15 @brief Error definitions for the SoC library
bogdanm 0:eff01767de02 16
bogdanm 0:eff01767de02 17 */
bogdanm 0:eff01767de02 18
bogdanm 0:eff01767de02 19 /* Header guard */
bogdanm 0:eff01767de02 20 #ifndef NRF_ERROR_SOC_H__
bogdanm 0:eff01767de02 21 #define NRF_ERROR_SOC_H__
bogdanm 0:eff01767de02 22
bogdanm 0:eff01767de02 23 #include "nrf_error.h"
bogdanm 0:eff01767de02 24
bogdanm 0:eff01767de02 25 /* Mutex Errors */
bogdanm 0:eff01767de02 26 #define NRF_ERROR_SOC_MUTEX_ALREADY_TAKEN (NRF_ERROR_SOC_BASE_NUM + 0) ///< Mutex already taken
bogdanm 0:eff01767de02 27
bogdanm 0:eff01767de02 28 /* NVIC errors */
bogdanm 0:eff01767de02 29 #define NRF_ERROR_SOC_NVIC_INTERRUPT_NOT_AVAILABLE (NRF_ERROR_SOC_BASE_NUM + 1) ///< NVIC interrupt not available
bogdanm 0:eff01767de02 30 #define NRF_ERROR_SOC_NVIC_INTERRUPT_PRIORITY_NOT_ALLOWED (NRF_ERROR_SOC_BASE_NUM + 2) ///< NVIC interrupt priority not allowed
bogdanm 0:eff01767de02 31 #define NRF_ERROR_SOC_NVIC_SHOULD_NOT_RETURN (NRF_ERROR_SOC_BASE_NUM + 3) ///< NVIC should not return
bogdanm 0:eff01767de02 32
bogdanm 0:eff01767de02 33 /* Power errors */
bogdanm 0:eff01767de02 34 #define NRF_ERROR_SOC_POWER_MODE_UNKNOWN (NRF_ERROR_SOC_BASE_NUM + 4) ///< Power mode unknown
bogdanm 0:eff01767de02 35 #define NRF_ERROR_SOC_POWER_POF_THRESHOLD_UNKNOWN (NRF_ERROR_SOC_BASE_NUM + 5) ///< Power POF threshold unknown
bogdanm 0:eff01767de02 36 #define NRF_ERROR_SOC_POWER_OFF_SHOULD_NOT_RETURN (NRF_ERROR_SOC_BASE_NUM + 6) ///< Power off should not return
bogdanm 0:eff01767de02 37
bogdanm 0:eff01767de02 38 /* Rand errors */
bogdanm 0:eff01767de02 39 #define NRF_ERROR_SOC_RAND_NOT_ENOUGH_VALUES (NRF_ERROR_SOC_BASE_NUM + 7) ///< RAND not enough values
bogdanm 0:eff01767de02 40
bogdanm 0:eff01767de02 41 /* PPI errors */
bogdanm 0:eff01767de02 42 #define NRF_ERROR_SOC_PPI_INVALID_CHANNEL (NRF_ERROR_SOC_BASE_NUM + 8) ///< Invalid PPI Channel
bogdanm 0:eff01767de02 43 #define NRF_ERROR_SOC_PPI_INVALID_GROUP (NRF_ERROR_SOC_BASE_NUM + 9) ///< Invalid PPI Group
bogdanm 0:eff01767de02 44
bogdanm 0:eff01767de02 45 #endif // NRF_ERROR_SOC_H__
bogdanm 0:eff01767de02 46 /**
bogdanm 0:eff01767de02 47 @}
bogdanm 0:eff01767de02 48 @}
bogdanm 0:eff01767de02 49 */