BLE temperature profile using digital DS1820 or analog LM35 sensors

Dependencies:   DS1820

Committer:
gkroussos
Date:
Sat Mar 07 16:23:41 2015 +0000
Revision:
0:637031152314
Working version 1.0

Who changed what in which revision?

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