可以将arduino与can bus sheild一起使用

时间:2019-03-08 21:30:39

标签: arduino can-bus

我正试图从VGM CAN message中抽出Reachstacker 42-45 tonnes

我在使用arduino MEGA 2560CAN-BUS shield的地方

这是我当前的代码:

#include <SPI.h>
#include "mcp_can.h"


// the cs pin of the version after v1.1 is default to D9
// v0.9b and v1.0 is default D10
const int SPI_CS_PIN = 9;

MCP_CAN CAN(SPI_CS_PIN);                                    // Set CS pin

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

START_INIT:

    if(CAN_OK == CAN.begin(CAN_500KBPS))                   // init can bus : baudrate = 500k
    {
        Serial.println("CAN BUS Shield init ok!");
    }
    else
    {
        Serial.println("CAN BUS Shield init fail");
        Serial.println("Init CAN BUS Shield again");
        delay(100);
        goto START_INIT;
    }
}


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

    if(CAN_MSGAVAIL == CAN.checkReceive())            // check if data coming
    {
        CAN.readMsgBuf(&len, buf);    // read data,  len: data length, buf: data buf

        unsigned char canId = CAN.getCanId();

        Serial.println("-----------------------------");
        Serial.println("get data from ID: ");
        Serial.println(canId);

        for(int i = 0; i<len; i++)    // print the data
        {
            Serial.print(buf[i]);
            Serial.print("\t");
        }
        Serial.println();
    }
}

这是进行测试时的结果,我不理解结果的问题 enter image description here

根据文档,其结果应为:enter image description here

这是文档的另一部分:enter image description here

如果某人需要更多信息或不了解我在寻找什么,可以请求帮助我


发送数据:

// demo: CAN-BUS Shield, send data
#include <mcp_can.h>
#include <SPI.h>

// the cs pin of the version after v1.1 is default to D9
// v0.9b and v1.0 is default D10
const int SPI_CS_PIN = 9;

MCP_CAN CAN(SPI_CS_PIN);                                    // Set CS pin

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

START_INIT:

    if(CAN_OK == CAN.begin(CAN_500KBPS))                   // init can bus : baudrate = 500k
    {
        Serial.println("CAN BUS Shield init ok!");
    }
    else
    {
        Serial.println("CAN BUS Shield init fail");
        Serial.println("Init CAN BUS Shield again");
        delay(100);
        goto START_INIT;
    }
}

unsigned char stmp[8] = {0, 1, 2, 3, 4, 5, 6, 7};
void loop()
{
    // send data:  id = 0x00, standrad frame, data len = 8, stmp: data buf
    CAN.sendMsgBuf(0x00, 0, 8, stmp);
    delay(100);                       // send data per 100ms
}

1 个答案:

答案 0 :(得分:1)

您有两段内容不适合您的文档和所生成的输出:

  1. 数据有效载荷
  2. CAN帧的ID

对于数据有效负载,这仅仅是格式化问题。您将每个字节打印为整数值,而在文档中将其打印为十六进制值。使用

Serial.print(buf[i], HEX)

将有效载荷打印为十六进制字符。

对于CAN帧的ID,从文档中可以看到它们不适合包含在未签名的字符中,如@Guille的注释中所述。实际上,这些是29位的标识符,您最好将其存储在适当大小的变量中。理想情况下,请使用unsigned long

unsigned long canId = CAN.getCanId();

在文档中,CAN ID也以十六进制打印,因此也可以在这里使用:

Serial.println(canId, HEX);