View Single Post
Old 08-21-2009, 07:02 PM   #469 (permalink)
Froggy
EcoModding Lurker
 
Join Date: Apr 2009
Location: Debolt, Alberta
Posts: 78
Thanks: 1
Thanked 2 Times in 2 Posts
I was looking at the init code, and I am not suprised it won't connect up with 14230. I made an error in the code (I don't have a 14230 car to test it with...)

I will correct it in the next check in or two...

Until the update, try this:

replace this line of code (it's in the code twice):
iso_write_data(dataStream, dataStreamSize);

with this block of code (once for fast and once for slow inits):

for(byte i = 0; i < dataStreamSize; i++)
{
iso_write_byte(dataStream[i]);
}

There is still another error in the code (reading the response), but that should not be hazardous to init functions which does not validate the response anyways.

See what happens...
  Reply With Quote