Mondeo MK5 IPC

IPC - Instrument cluster panels (like Convers+)
User avatar
Stevebe
Pro
Posts: 258
Joined: 08 Feb 2019, 12:28

Re: Mondeo MK5 IPC

Post by Stevebe »

Just for reference the tacho on the ipc is on ID 204 data bit 5 00 to 0C that gives 0nto 6k. HS can 500k.
If you connect with UCDS use the old MS can pins 11 and 3 but it’s running Hs 500k, then you can pol the ipc from UCDS and also dump the EEPROM from UCDS 4096 bytes..
I have been bombing the ipc most of the day as most ALL function are on the HS can including the steering wheel buttons, I think the A2D is in the SWM
Then is translates to Can I’d 2A1 29 29 29 29 29 29 29 29 is the centre Menü haven’t found the ok button I’d yet but I have found some wildly weird
Functions .lol. M
https://youtu.be/ddcLy7aTAeo
Digimod
leader
Active member
Posts: 50
Joined: 24 Jun 2019, 10:35
Contact:

Re: Mondeo MK5 IPC

Post by leader »

Hi,

The button are controlled by the SCCM module (Steering Column Control Module), and the messages are sent on HS2-CAN:
mondemk5_sccm.JPG
mondemk5_sccm_C2414A.JPG
mondemk5_sccm_C2414D.JPG
There is also a function in UCDS where you can monitor steering wheel buttons:
ucds-sccm-switchlogger.JPG
Regards,
leader
You do not have the required permissions to view the files attached to this post.
User avatar
Stevebe
Pro
Posts: 258
Joined: 08 Feb 2019, 12:28

Re: Mondeo MK5 IPC

Post by Stevebe »

leader wrote: 17 Feb 2020, 18:36 Hi,

The button are controlled by the SCCM module (Steering Column Control Module), and the messages are sent on HS2-CAN:

mondemk5_sccm.JPG

mondemk5_sccm_C2414A.JPG

mondemk5_sccm_C2414D.JPG

There is also a function in UCDS where you can monitor steering wheel buttons:

ucds-sccm-switchlogger.JPG

Regards,
leader
Yes that’s what I said, I have just got a module with steering wheel to hook up also a gatway
Digimod
leader
Active member
Posts: 50
Joined: 24 Jun 2019, 10:35
Contact:

Re: Mondeo MK5 IPC

Post by leader »

Some weeks ago I already played with the buttons remotely on one of my friend's car, but unfotuntaly he had only UCDS cable and all the logs are encrypred....
If somebody is able to decrypt UCDS log files than I can send it. There are different logs for every buttons and the logs peridic sequence of button pushes.
User avatar
Stevebe
Pro
Posts: 258
Joined: 08 Feb 2019, 12:28

Re: Mondeo MK5 IPC

Post by Stevebe »

ID 2A1 29 29 29 29 29 29 29 29

Is part of the can messages
Digimod
leader
Active member
Posts: 50
Joined: 24 Jun 2019, 10:35
Contact:

Re: Mondeo MK5 IPC

Post by leader »

Based on some information found on one F150 forum played a little with the buttons and I found the messages to navigate in the central menu... :)

There are 3 states of the button:

1. Pressed: 2A1 ?? FF FF FF 10 00 1E 02
2. Released: 2A1 ?? FF FF FF 00 00 1E 00
3. Held: 2A1 ?? FF FF FF 10 00 1E 00

The ?? bytes are the button codes which are:

28 => RIGHT (or OK)
29 => LEFT
2A => OK (or Right)
2B => UP
2C => DOWN

Before Pressed signal always must send a Relesed signal to avoit stuck on Held state.
If you send only the Pressed state than the menu navigation will be hang for few seconds and IPC will not accept new button signals meanwhile.

For example a simple DOWN press singal must be the following:

Code: Select all

2A1 2C FF FF FF 00 00 1E 00  <= DOWN button in released state
sleep 10ms
2A1 2C FF FF FF 10 00 1E 02 <= DOWN button in pressed state
On linux using can-utils I create the following bash aliases to navigate in the central menu:

Code: Select all

alias pleft="cansend can1 2A1#29FFFFFF00001E00; sleep 0.01; cansend can1 2A1#29FFFFFF10001E02"
alias pright="cansend can1 2A1#28FFFFFF00001E00; sleep 0.01; cansend can1 2A1#28FFFFFF10001E02"
alias pok="cansend can1 2A1#2AFFFFFF00001E00; sleep 0.01; cansend can1 2A1#2AFFFFFF10001E02"
alias pup=' cansend can1 2A1#2BFFFFFF00001E00; sleep 0.01; cansend can1 2A1#2BFFFFFF10001E02'
alias pdown='cansend can1 2A1#2CFFFFFF00001E00; sleep 0.01; cansend can1 2A1#2CFFFFFF10001E02'
Than I can use the pleft/pright/pok/pdown/pup commands for the navigation in the central menu.

Now it's need to figure out how to navigate in the left menu also...
User avatar
Stevebe
Pro
Posts: 258
Joined: 08 Feb 2019, 12:28

Re: Mondeo MK5 IPC

Post by Stevebe »

leader wrote: 17 Feb 2020, 21:53 Based on some information found on one F150 forum played a little with the buttons and I found the messages to navigate in the central menu... :)

There are 3 states of the button:

1. Pressed: 2A1 ?? FF FF FF 10 00 1E 02
2. Released: 2A1 ?? FF FF FF 00 00 1E 00
3. Held: 2A1 ?? FF FF FF 10 00 1E 00


NICE work leader..
Yeah they are very good got USM, CD, running also
EFD49D7F-51B7-40A3-BC86-90FBE749E387.jpeg
553F2DA5-F5DE-444F-B1DF-9922220DCDAB.jpeg
67CF0E4E-EFA6-4DC1-86D1-701F6CB2F4BB.jpeg
0BC56761-B6AC-46A2-9450-31AA7A36818D.jpeg
You do not have the required permissions to view the files attached to this post.
Digimod
leader
Active member
Posts: 50
Joined: 24 Jun 2019, 10:35
Contact:

Re: Mondeo MK5 IPC

Post by leader »

Stevebe, are you living upside down? :lol:

Every of your photos are upside down...
User avatar
Stevebe
Pro
Posts: 258
Joined: 08 Feb 2019, 12:28

Re: Mondeo MK5 IPC

Post by Stevebe »

leader wrote: 18 Feb 2020, 06:57 Stevebe, are you living upside down? :lol:

Every of your photos are upside down...
They will be ok when you open them or perhaps the rest of the world is upside down ;)
GPS MODULE for sync 2
GPS MODULEB.jpg
GPS MODULEA.jpg
You do not have the required permissions to view the files attached to this post.
Digimod
User avatar
Stevebe
Pro
Posts: 258
Joined: 08 Feb 2019, 12:28

Re: Mondeo MK5 IPC

Post by Stevebe »

Has anyone got the connection pinout to the FCIM
image.jpg
image.jpg
You do not have the required permissions to view the files attached to this post.
Digimod
Post Reply