Hallo, with an XIAO RP2040 and MCP2515 maybe for i think 100 hours all possible to get it work - i become no messages from the Audi A3 8p 2006.
Connections:
Xiao RP2040 MCP2515
D10 MOSI MOSI
D9 MISO MISO
D8 SCK SCK
D7 CSn CS
D1 INT
I tryed this:
I tryed 3 different MCP2515, an ESP32, another Oscilator from 8MHz to 16 MHz,
network termination on the MCP2515 i bridged.
I used this code (and also other i tryed):
// CAN Receive Example
#include <mcp_can.h>
#include <SPI.h>
long unsigned int rxId;
unsigned char len = 0;
unsigned char rxBuf[8];
char msgString[128]; // Array to store serial string
#define CAN0_INT D1 // Set INT to pin 2
MCP_CAN CAN0(7); // Set CS to pin 10
void setup()
{
Serial.begin(115200);
// Initialize MCP2515 running at 16MHz with a baudrate of 500kb/s and the masks and filters disabled.
if(CAN0.begin(MCP_ANY, CAN_500KBPS, MCP_16MHZ) == CAN_OK)
Serial.println("MCP2515 Initialized Successfully!");
else
Serial.println("Error Initializing MCP2515...");
CAN0.setMode(MCP_NORMAL); // Set operation mode to normal so the MCP2515 sends acks to received data.
pinMode(CAN0_INT, INPUT); // Configuring pin for /INT input
Serial.println("MCP2515 Library Receive Example...");
}
void loop()
{
if(!digitalRead(CAN0_INT)) // If CAN0_INT pin is low, read receive buffer
{
CAN0.readMsgBuf(&rxId, &len, rxBuf); // Read data: len = data length, buf = data byte(s)
if((rxId & 0x80000000) == 0x80000000) // Determine if ID is standard (11 bits) or extended (29 bits)
sprintf(msgString, "Extended ID: 0x%.8lX DLC: %1d Data:", (rxId & 0x1FFFFFFF), len);
else
sprintf(msgString, "Standard ID: 0x%.3lX DLC: %1d Data:", rxId, len);
Serial.print(msgString);
if((rxId & 0x40000000) == 0x40000000){ // Determine if message is a remote request frame.
sprintf(msgString, " REMOTE REQUEST FRAME");
Serial.print(msgString);
} else {
for(byte i = 0; i<len; i++){
sprintf(msgString, " 0x%.2X", rxBuf[i]);
Serial.print(msgString);
}
}
Serial.println();
}
}
I tryed to write the Pins with an "D" and without. For example D1 for INT.
The Can Speed on this car is 500Kbit on the PINS of the OBD: 3 + 11
No Idea what else i can try and where is here the issue. I am a "Beginner" but so stupid i think i am also not.
I Hope you can help me. I can later put some pictures from all this here into.
Blockzitat