This library allows you to communicate with multiple types of CAN controllers using a consistent API, making CAN communications across development platforms easier through Arduino.
The idea behind this CAN library is to use a similar approach to [Adafruit's Unified Sensor library] (https://github.com/adafruit/Adafruit_Sensor "Adafruit's Unified Sensor library") by standardizing CAN function calls, frame structure, filters, masks, buffers, etc to be used with a wide variety of CAN controllers. This library currently supports the following controllers:
- Microchip MCP2510 & MCP2515 through the SPI interface
- Tested using both the SparkFun CAN-BUS Shield as well as the Seeed Studio CAN-BUS Shield
- Atmel SAM3X family of MCU
- Tested using the SAM3X8E on the Arduino Due
- Freescale Kinetis K2x family of MCU
- Tested using the MK20DX256VLH7 on the PJRC Teensy 3.1
Since I have taken features from so many libraries I can’t tell what came from where, so in order not to violate any GPL, LGPL or any other license out there I am trying to give credit where credit is due. I am only a contributor to this library and some of the work here might not be mine. I can take credit in putting it together and releasing back to the public to make any variation as needed.
To start using this library, simply add the following two lines to your sketch:
#include <CAN.h>
#include <SPI.h> // required to resolve #define conflicts
Acknowledgements:
- Fabian Greif for the initial libraries for MCP2515, SJA1000 and AT90CAN
- http://www.kreatives-chaos.com/artikel/universelle-can-bibliothek as well as his updates at https://github.com/dergraaf/avr-can-lib
- David Harding for his version of the MCP2515 library
- Kyle Crockett CANduino library with 16Mhz oscillator
- Nuno Alves for the help on Extended ID messaging
- Stevenh for his work on library and all of the MCP research/work
- Collin Kidder (collin80) for his work on the Arduino Due CAN interface
- Daniel Kasamis (togglebit) both for his code at https://github.com/togglebit/ArduinoDUE_OBD_FreeRunningCAN as well as his DUE CANshield http://togglebit.net/product/arduino-due-can-shield/
- Cory Fowler (coryjfowler) for 16 MHz bitrate timing information
- teachop for the FlexCAN library for the Teensy 3.1