automotive-message-broker
0.14.803
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Groups
Pages
plugins
common
canadapter.h
1
/*
2
Copyright (C) 2012 Intel Corporation
3
Copyright (C) 2015 Cogent Embedded Inc.
4
Copyright (C) 2015 Renesas Electronics Corporation
5
6
This library is free software; you can redistribute it and/or
7
modify it under the terms of the GNU Lesser General Public
8
License as published by the Free Software Foundation; either
9
version 2.1 of the License, or (at your option) any later version.
10
11
This library is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
Lesser General Public License for more details.
15
16
You should have received a copy of the GNU Lesser General Public
17
License along with this library; if not, write to the Free Software
18
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
*/
20
21
#ifndef CANADAPTER_H
22
#define CANADAPTER_H
23
29
#include <linux/can.h>
30
31
class
CANObserver
;
32
42
class
CANAdapter
43
{
44
public
:
45
virtual
~
CANAdapter
();
/*LCOV_EXCL_LINE*/
53
static
CANAdapter
*
createCANAdapter
(
CANObserver
& observer);
60
virtual
bool
start
(
const
char
*
name
) = 0;
65
virtual
void
stop
() = 0;
72
virtual
bool
sendFrame
(
const
can_frame& frame) = 0;
81
virtual
bool
registerCyclicMessageForReceive
(
int
canId,
double
minCycleTime,
double
maxCycleTime) = 0;
88
virtual
bool
unregisterMessageForReceive
(
int
canId) = 0;
89
90
protected
:
94
CANAdapter
(
CANObserver
& observer);
95
96
protected
:
102
CANObserver
&
mObserver
;
103
104
};
105
106
#endif // CANADAPTER_H
107
Generated by
1.8.2