mbed library for NZ32-SC151

Committer:
modtronix-com
Date:
Fri Aug 19 15:46:42 2016 +1000
Revision:
17:639ed60ce759
Parent:
1:71204b8406f2
Added tag v1.1 for changeset 076cbe3e55be

Who changed what in which revision?

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