source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/hal/can_helper.h@ 374

Last change on this file since 374 was 374, checked in by coas-nagasima, 5 years ago

mbed関連を更新
シリアルドライバをmbedのHALを使うよう変更
ファイルディスクリプタの処理を更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 1.6 KB
Line 
1
2/** \addtogroup hal */
3/** @{*/
4/* mbed Microcontroller Library
5 * Copyright (c) 2006-2013 ARM Limited
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19#ifndef MBED_CAN_HELPER_H
20#define MBED_CAN_HELPER_H
21
22#if DEVICE_CAN
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28/**
29 *
30 * \enum CANFormat
31 *
32 * \brief Values that represent CAN Format
33**/
34enum CANFormat {
35 CANStandard = 0,
36 CANExtended = 1,
37 CANAny = 2
38};
39typedef enum CANFormat CANFormat;
40
41/**
42 *
43 * \enum CANType
44 *
45 * \brief Values that represent CAN Type
46**/
47enum CANType {
48 CANData = 0,
49 CANRemote = 1
50};
51typedef enum CANType CANType;
52
53/**
54 *
55 * \struct CAN_Message
56 *
57 * \brief Holder for single CAN message.
58 *
59**/
60struct CAN_Message {
61 unsigned int id; // 29 bit identifier
62 unsigned char data[8]; // Data field
63 unsigned char len; // Length of data field in bytes
64 CANFormat format; // Format ::CANFormat
65 CANType type; // Type ::CANType
66};
67typedef struct CAN_Message CAN_Message;
68
69#ifdef __cplusplus
70};
71#endif
72
73#endif
74
75#endif // MBED_CAN_HELPER_H
76
77/** @}*/
Note: See TracBrowser for help on using the repository browser.