Unfortunately we do not accept new members for free, Now Registration cost 30€, if you are interesting Send Email to [email protected]

Arduino CCC/CIC ID
17-05-2019, 14:41 PM,
Post: #1
Arduino CCC/CIC ID
I´m new to Arduino and got a bench station for e-series ECUs, I already have one with cas, jbbf, key, and so on.

I´m using ID 130 (45, 41, 21, 8F, 02), this works fine for frm. This site listed a few IDs, I´ve tested a few of them, but still no success: http://www.loopybunny.co.uk/CarPC/k_can.html


I can power up the CIC, but still have to push the power button to "wake" it up, but still only CD/Multimedia and Radio menu show up, so no kl15? (ID 274 and a few other didn´t work)

Can anyone give me a hint on how to get the right way?
Quote this message in a reply
[+] 2 users say Thank You to Freddy1 for this post
18-05-2019, 18:35 PM,
Post: #2
RE: Arduino CCC/CIC ID
hi Freddy
is this right, you have connected your Arduino to K-CAN, not D-CAN?
i got last days a PiCAN2 for my Raspberry and wanna try same.
Connected today to OBD2 connector (D-CAN) with success.
D-CAN has 500kbits speed
wanna try tomorrow to connect same as you, to K-CAN
for first ill need to change 500kbits to 100kbits, right?
did you changed anything else for a stable connection?
Quote this message in a reply
20-05-2019, 14:38 PM,
Post: #3
RE: Arduino CCC/CIC ID
Canspeed is set 100 right now:

Code:
{
  Serial.begin(115200);
  //Initialise MCP2515 CAN controller at the specified speed
  if (Canbus.init(CANSPEED_100))
    Serial.println("CAN Init ok");
  else
    Serial.println("Can't Init CAN");
  delay(1000);
}

For exampe this is what I use for FRMs:

Code:
    if( millis() - id130Sent >= 50 ){
      message.id = 0x130; //formatted in HEX
      message.header.rtr = 0;
      message.header.length = 5; //formatted in DEC
      message.data[0] = 0x45;
      message.data[1] = 0x41;
      message.data[2] = 0x21;
      message.data[3] = 0x8F;
      message.data[4] = 0x02;
   
      mcp2515_bit_modify(CANCTRL, (1 << REQOP2) | (1 << REQOP1) | (1 << REQOP0), 0);
      mcp2515_send_message(&message);
      id130Sent = millis();
      Serial.println("130 gesendet");
      delay(50);
Quote this message in a reply
22-05-2019, 00:05 AM, (This post was last modified: 22-05-2019, 00:06 AM by uragan1987.)
Post: #4
RE: Arduino CCC/CIC ID
i have a KOMBI from F-Series
do you have an request example for F-Series KOMBI?
it has PT_CAN, so CANSPEED_500 should be right one
Quote this message in a reply
13-06-2019, 21:37 PM,
Post: #5
RE: Arduino CCC/CIC ID
Still not coming forward with this one, I still can´t get it right, if I plug in a kombi, I can see it, code it, whatever, all fine, but it´s you turned off ignition, its out. Same for Navi, I have to turn it on by power button, any ideas or suggestions?
Quote this message in a reply


Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content