Page 2 of 2
Re: Probationary wiring diagram for modules of Mondeo mk4 family
Posted: 02 Feb 2020, 21:15
by hanssi
No, little bit different!
Re: Probationary wiring diagram for modules of Mondeo mk4 family
Posted: 03 Feb 2020, 00:19
by DGAlexandru
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:
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
running on a RaspberryPI with Linux and SocketCAN.
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
Posted: 03 Feb 2020, 00:53
by Stevebe
3876ABFC-D5D3-45DC-B2AE-A053F1B2F52B.jpeg
A capture of my system the ign I’d 48 the rest of the data can be seen in the capture. It will also bring up satnav
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
Re: Probationary wiring diagram for modules of Mondeo mk4 family
Posted: 10 Jan 2021, 21:49
by tomy75
Schema for preFacelift BCM
Re: Probationary wiring diagram for modules of Mondeo mk4 family
Posted: 13 Jan 2021, 19:17
by fryciu
Excellent idea, thanks!