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...
|