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 /* mbed Microcontroller Library
gkroussos 0:637031152314 2 * Copyright (c) 2006-2013 ARM Limited
gkroussos 0:637031152314 3 *
gkroussos 0:637031152314 4 * Licensed under the Apache License, Version 2.0 (the "License");
gkroussos 0:637031152314 5 * you may not use this file except in compliance with the License.
gkroussos 0:637031152314 6 * You may obtain a copy of the License at
gkroussos 0:637031152314 7 *
gkroussos 0:637031152314 8 * http://www.apache.org/licenses/LICENSE-2.0
gkroussos 0:637031152314 9 *
gkroussos 0:637031152314 10 * Unless required by applicable law or agreed to in writing, software
gkroussos 0:637031152314 11 * distributed under the License is distributed on an "AS IS" BASIS,
gkroussos 0:637031152314 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
gkroussos 0:637031152314 13 * See the License for the specific language governing permissions and
gkroussos 0:637031152314 14 * limitations under the License.
gkroussos 0:637031152314 15 */
gkroussos 0:637031152314 16 #ifndef MBED_CAN_HELPER_H
gkroussos 0:637031152314 17 #define MBED_CAN_HELPER_H
gkroussos 0:637031152314 18
gkroussos 0:637031152314 19 #if DEVICE_CAN
gkroussos 0:637031152314 20
gkroussos 0:637031152314 21 #ifdef __cplusplus
gkroussos 0:637031152314 22 extern "C" {
gkroussos 0:637031152314 23 #endif
gkroussos 0:637031152314 24
gkroussos 0:637031152314 25 enum CANFormat {
gkroussos 0:637031152314 26 CANStandard = 0,
gkroussos 0:637031152314 27 CANExtended = 1,
gkroussos 0:637031152314 28 CANAny = 2
gkroussos 0:637031152314 29 };
gkroussos 0:637031152314 30 typedef enum CANFormat CANFormat;
gkroussos 0:637031152314 31
gkroussos 0:637031152314 32 enum CANType {
gkroussos 0:637031152314 33 CANData = 0,
gkroussos 0:637031152314 34 CANRemote = 1
gkroussos 0:637031152314 35 };
gkroussos 0:637031152314 36 typedef enum CANType CANType;
gkroussos 0:637031152314 37
gkroussos 0:637031152314 38 struct CAN_Message {
gkroussos 0:637031152314 39 unsigned int id; // 29 bit identifier
gkroussos 0:637031152314 40 unsigned char data[8]; // Data field
gkroussos 0:637031152314 41 unsigned char len; // Length of data field in bytes
gkroussos 0:637031152314 42 CANFormat format; // 0 - STANDARD, 1- EXTENDED IDENTIFIER
gkroussos 0:637031152314 43 CANType type; // 0 - DATA FRAME, 1 - REMOTE FRAME
gkroussos 0:637031152314 44 };
gkroussos 0:637031152314 45 typedef struct CAN_Message CAN_Message;
gkroussos 0:637031152314 46
gkroussos 0:637031152314 47 #ifdef __cplusplus
gkroussos 0:637031152314 48 };
gkroussos 0:637031152314 49 #endif
gkroussos 0:637031152314 50
gkroussos 0:637031152314 51 #endif
gkroussos 0:637031152314 52
gkroussos 0:637031152314 53 #endif // MBED_CAN_HELPER_H