Probationary wiring diagram for modules of Mondeo mk4 family

All other modules found in Ford cars
hanssi
Starter
Posts: 43
Joined: 02 Jul 2019, 20:12

Re: Probationary wiring diagram for modules of Mondeo mk4 family

Post by hanssi »

No, little bit different!
DGAlexandru
Pro
Posts: 364
Joined: 04 Aug 2019, 22:47

Re: Probationary wiring diagram for modules of Mondeo mk4 family

Post 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
User avatar
Stevebe
Pro
Posts: 258
Joined: 08 Feb 2019, 12:28

Re: Probationary wiring diagram for modules of Mondeo mk4 family

Post 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
You do not have the required permissions to view the files attached to this post.
Digimod
tomy75
Active member
Posts: 112
Joined: 13 Jun 2019, 21:57

Re: Probationary wiring diagram for modules of Mondeo mk4 family

Post by tomy75 »

Schema for preFacelift BCM
You do not have the required permissions to view the files attached to this post.
User avatar
fryciu
Starter
Posts: 22
Joined: 27 Jul 2020, 19:12

Re: Probationary wiring diagram for modules of Mondeo mk4 family

Post by fryciu »

Excellent idea, thanks!
Post Reply