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 #ifndef _NORDIC_GLOBAL_H_
gkroussos 0:637031152314 2 #define _NORDIC_GLOBAL_H_
gkroussos 0:637031152314 3
gkroussos 0:637031152314 4 /* There are no global defines in mbed, so we need to define */
gkroussos 0:637031152314 5 /* mandatory conditional compilation flags here */
gkroussos 0:637031152314 6 //#define NRF51
gkroussos 0:637031152314 7 #ifndef DEBUG_NRF_USER
gkroussos 0:637031152314 8 #define DEBUG_NRF_USER
gkroussos 0:637031152314 9 #endif
gkroussos 0:637031152314 10 #ifndef BLE_STACK_SUPPORT_REQD
gkroussos 0:637031152314 11 #define BLE_STACK_SUPPORT_REQD
gkroussos 0:637031152314 12 #endif
gkroussos 0:637031152314 13 #ifndef BOARD_PCA10001
gkroussos 0:637031152314 14 #define BOARD_PCA10001
gkroussos 0:637031152314 15 #endif
gkroussos 0:637031152314 16
gkroussos 0:637031152314 17 #endif