Probationary wiring diagram for modules of Mondeo mk4 family
Re: Probationary wiring diagram for modules of Mondeo mk4 family
No, little bit different!
-
- Pro
- Posts: 364
- Joined: 04 Aug 2019, 22:47
Re: Probationary wiring diagram for modules of Mondeo mk4 family
Or you can always emulate the contact position sent by BCM on MS CAN with:
CAN ID: 048
Bytes: // // // // D4 // // // ignition status; 26 = ON; 29 = starting; 27 = engine running; 25 = ON to OFF; 21 = OFF; 24 = OFF to ON; 20 = ??
You have to send this information over MS-CAN once a second.
Of course, adding other information is also good, to have other errors removed from C+ / "error lights" OFF. I have this in a bash script:
running on a RaspberryPI with Linux and SocketCAN.
CAN1 is initialized like this:
CAN ID: 048
Bytes: // // // // D4 // // // ignition status; 26 = ON; 29 = starting; 27 = engine running; 25 = ON to OFF; 21 = OFF; 24 = OFF to ON; 20 = ??
You have to send this information over MS-CAN once a second.
Of course, adding other information is also good, to have other errors removed from C+ / "error lights" OFF. I have this in a bash script:
Code: Select all
while true
do
cansend can1 048#FF076C092702E0A0 #contact: EngineRun and other data
sleep 0.2
cansend can1 120#0000000248000000 #AirBag Light OFF for PreFaceLift
sleep 0.2
cansend can1 220#80002C000000E288 #Engine Light OFF
sleep 0.2
cansend can1 08B#00000038001E6750 #25% FUEL, OIL Light OFF
sleep 0.2
done
CAN1 is initialized like this:
Code: Select all
sudo ip link set can1 down
sudo ip link set can1 type can bitrate 125000 restart-ms 100 loopback off
sudo ip link set can1 up
sudo ifconfig can1 txqueuelen 1000
ip -d -s link show can1
Re: Probationary wiring diagram for modules of Mondeo mk4 family
The forum had a hic cup and this is what I ended up with a reply to my own post can’t delete one as it thinks it has been answered Go4it can you sort
You do not have the required permissions to view the files attached to this post.
Digimod
Re: Probationary wiring diagram for modules of Mondeo mk4 family
Schema for preFacelift BCM
You do not have the required permissions to view the files attached to this post.
Re: Probationary wiring diagram for modules of Mondeo mk4 family
Excellent idea, thanks!