Mistake on this page?
Report an issue in GitHub or email us
Public Member Functions
RawCAN Class Reference
Inheritance diagram for RawCAN:
CAN can

Public Member Functions

int frequency (int hz)
 Set the frequency of the CAN interface. More...
 
int write (CANMessage msg)
 Write a CANMessage to the bus. More...
 
int read (CANMessage &msg, int handle=0)
 Read a CANMessage from the bus. More...
 
void reset ()
 Reset CAN interface. More...
 
void monitor (bool silent)
 Puts or removes the CAN interface into silent monitoring mode. More...
 
int mode (Mode mode)
 Change CAN operation to the specified mode. More...
 
int filter (unsigned int id, unsigned int mask, CANFormat format=CANAny, int handle=0)
 Filter out incoming messages. More...
 
unsigned char rderror ()
 Detects read errors - Used to detect read overflow errors. More...
 
unsigned char tderror ()
 Detects write errors - Used to detect write overflow errors. More...
 
void attach (Callback< void()> func, IrqType type=IrqType::RxIrq)
 Attach a function to call whenever a CAN frame received interrupt is generated. More...
 

Detailed Description

Definition at line 33 of file RawCAN.h.

Member Function Documentation

void attach ( Callback< void()>  func,
IrqType  type = IrqType::RxIrq 
)
inherited

Attach a function to call whenever a CAN frame received interrupt is generated.

This function locks the deep sleep while a callback is attached

Parameters
funcA pointer to a void function, or 0 to set as none
typeWhich CAN interrupt to attach the member function to (CAN::RxIrq for message received, CAN::TxIrq for transmitted or aborted, CAN::EwIrq for error warning, CAN::DoIrq for data overrun, CAN::WuIrq for wake-up, CAN::EpIrq for error passive, CAN::AlIrq for arbitration lost, CAN::BeIrq for bus error)
int filter ( unsigned int  id,
unsigned int  mask,
CANFormat  format = CANAny,
int  handle = 0 
)
inherited

Filter out incoming messages.

Parameters
idthe id to filter on
maskthe mask applied to the id
formatformat to filter on (Default CANAny)
handlemessage filter handle (Optional)
Returns
0 if filter change failed or unsupported, new filter handle if successful
int frequency ( int  hz)
inherited

Set the frequency of the CAN interface.

Parameters
hzThe bus frequency in hertz
Returns
1 if successful, 0 otherwise
int mode ( Mode  mode)
inherited

Change CAN operation to the specified mode.

Parameters
modeThe new operation mode (CAN::Normal, CAN::Silent, CAN::LocalTest, CAN::GlobalTest, CAN::SilentTest)
Returns
0 if mode change failed or unsupported, 1 if mode change was successful
void monitor ( bool  silent)
inherited

Puts or removes the CAN interface into silent monitoring mode.

Parameters
silentboolean indicating whether to go into silent mode or not
unsigned char rderror ( )
inherited

Detects read errors - Used to detect read overflow errors.

Returns
number of read errors
int read ( CANMessage msg,
int  handle = 0 
)
inherited

Read a CANMessage from the bus.

Parameters
msgA CANMessage to read to.
handlemessage filter handle (0 for any message)
Returns
0 if no message arrived, 1 if message arrived
void reset ( )
inherited

Reset CAN interface.

To use after error overflow.

unsigned char tderror ( )
inherited

Detects write errors - Used to detect write overflow errors.

Returns
number of write errors
int write ( CANMessage  msg)
inherited

Write a CANMessage to the bus.

Parameters
msgThe CANMessage to write.
Returns
0 if write failed, 1 if write was successful
Important Information for this Arm website

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling cookies, some features of the site will not work.