Getting Started with Aptinex CAN - ISO Module

A DIY Introduction to CAN Protocol and use CAN- ISO module(MCP2517FD) with Arduino.

BeginnerProtip1 hour129
Getting Started with Aptinex CAN - ISO Module

Things used in this project

Hardware components

Aptinex Isolated SPI-CAN Module V1.0 MCP2517FD ISO1042BDWR
×1
Arduino UNO
Arduino UNO
×2

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Wiring connection

Code

CAN20_SEND.ino

C/C++
#include <SPI.h>
#include "mcp2518fd_can.h"


// pins for CAN-FD Shield
//const int SPI_CS_PIN = 9;
//const int CAN_INT_PIN = 2;


// pins for CANBed FD
const int SPI_CS_PIN = 10;
const int CAN_INT_PIN = 3;


mcp2518fd CAN(SPI_CS_PIN); // Set CS pin


void setup() {
    Serial.begin(115200);
    while(!Serial);


    while (CAN_OK != CAN.begin(CAN20_500KBPS)) {             // init can bus : baudrate = 500k
        Serial.println("CAN init fail, retry...");
        delay(100);
    }
    Serial.println("CAN init ok!");
    delay(1000);
}


unsigned char stmp[8] = {0, 1, 2, 3, 4, 5, 6, 7};


void loop() {


    CAN.sendMsgBuf(0x01, 0, 8, stmp);       // send a standard frame to id 0x01
    delay(10);
    CAN.sendMsgBuf(0x04, 1, 8, stmp);       // send a extended frame to id 0x04
    delay(100);                       // send data per 100ms
    Serial.println("CAN BUS sendMsgBuf ok!");


     delay(1000);
}

CAN20_RECV_CHECK.ino

C/C++
#include <SPI.h>
#include "mcp2518fd_can.h"


// pinS for CAN-FD Shield,
//const int SPI_CS_PIN = 9;
//const int CAN_INT_PIN = 2;


// pinS for CANBed FD
const int SPI_CS_PIN = 10;
const int CAN_INT_PIN = 3;


mcp2518fd CAN(SPI_CS_PIN); // Set CS pin
                         
void setup() {
    Serial.begin(115200);
    while(!Serial);
    while (CAN_OK != CAN.begin(CAN20_500KBPS)) {             // init can bus : baudrate = 500k
        Serial.println("CAN init fail, retry...");
        delay(100);
    }
    Serial.println("CAN init ok!");
}




void loop() {
    unsigned char len = 0;
    unsigned char buf[8];


    if (CAN_MSGAVAIL == CAN.checkReceive())         // heck if data coming
    {        
   
        CAN.readMsgBuf(&len, buf);                  // You should call readMsgBuff before getCanId
        unsigned long id = CAN.getCanId();
        unsigned char ext = CAN.isExtendedFrame();
       
        Serial.print(ext ? "GET EXTENDED FRAME FROM ID: 0X" : "GET STANDARD FRAME FROM ID: 0X");
        Serial.println(id, HEX);
       
        Serial.print("Len = ");
        Serial.println(len);
            // print the data
        for (int i = 0; i < len; i++) {
            Serial.print(buf[i]);
            Serial.print("\t");
        }
        Serial.println();
    }

Credits

Chathura Yapa Bandara
19 projects • 5 followers
Contact
Kesara Malinda
3 projects • 1 follower
Contact
Bhuvisara Dharmasena
5 projects • 1 follower
Contact

Comments

Please log in or sign up to comment.