rusEFI
The most advanced open source ECU
Loading...
Searching...
No Matches
Public Member Functions | Data Fields
CanRxMessage Class Reference

#include <serial_can.h>

Collaboration diagram for CanRxMessage:
Collaboration graph
[legend]

Public Member Functions

 CanRxMessage ()
 
 CanRxMessage (const CANRxFrame &f)
 
 CanRxMessage (const CanRxMessage &msg)
 
CanRxMessageoperator= (const CanRxMessage &msg)
 

Data Fields

CANRxFrame frame
 

Detailed Description

Definition at line 95 of file serial_can.h.

Constructor & Destructor Documentation

◆ CanRxMessage() [1/3]

CanRxMessage::CanRxMessage ( )
inline

Definition at line 97 of file serial_can.h.

97{}

◆ CanRxMessage() [2/3]

CanRxMessage::CanRxMessage ( const CANRxFrame f)
inline

Definition at line 98 of file serial_can.h.

98 {
99 frame = f;
100 }
CANRxFrame frame
Definition serial_can.h:108

◆ CanRxMessage() [3/3]

CanRxMessage::CanRxMessage ( const CanRxMessage msg)
inline

Definition at line 101 of file serial_can.h.

101: frame(msg.frame) {}

Member Function Documentation

◆ operator=()

CanRxMessage & CanRxMessage::operator= ( const CanRxMessage msg)
inline

Definition at line 102 of file serial_can.h.

102 {
103 frame = msg.frame;
104 return *this;
105 }

Field Documentation

◆ frame

CANRxFrame CanRxMessage::frame

Definition at line 108 of file serial_can.h.

Referenced by CanRxMessage(), operator=(), and CanStreamer::receive().


The documentation for this class was generated from the following file: