Defines the CAN sensor types.
This module provides access to the CAN bus typically used for communication between different ECUs in a vehicle. The implementation provides an abstracted layer over any implemented sensor drivers, supporting receive, send and filtering routines.
CAN data packet as of ISO 11898-1:
Byte:| 0 | 1 | 2 | 3 |
Bit: |07-06-05-04-03-02-01-00|15-14-13-12-11-10-09-08|23-22-21-20-19-18-17-16|31-30-29-28-27-26-25-24|
Byte:| 4 | 5 | 6 | 7 |
Bit: |39-38-37-36-35-34-33-32|47-46-45-44-43-42-41-40|55-54-53-52-51-50-49-48|63-62-61-60-59-58-57-56|
- Note
- Currently supported frame message format is ISO 11898-1.
Testing (Linux only)
If you have a real CAN device, activate it with this command:
:> sudo ip link set can0 up type can bitrate 500000
A virtual device is created using following commands:
:> sudo modprobe vcan
:> sudo ip link add dev vcan0 type vcan
:> sudo ip link set up vcan0
In order to send data from console to the virtual CAN bus, the cansend tool (from the can-utils package) can be used.
:> cansend vcan0 30B#1122334455667788
Maximal length of the supported CAN message id [bits].
Definition at line 92 of file CANTypes.h.