The MP3car.com Store  

Welcome to the MP3Car.com forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. Registering will also remove advertisements. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   MP3Car.com > Mp3Car Technical > Input Devices

Reply
 
Thread Tools Display Modes
Old 12-29-2004, 04:10 AM   #16
Newbie
 
Join Date: Sep 2004
Posts: 6
My Photos: (0)
No. I'm no assembler expert, and I couldn't find any reference to what hardware the code was to run on. I've got a changer in the post, so I suspect I will be starting down the same road you are very shortly. Reverse-engineering protocols - gotta love it!

Cheers,
Andy
andylaurence is offline   Reply With Quote
Sponsored Links
Old 01-01-2005, 07:09 AM   #17
Newbie
 
Join Date: Jul 2004
Location: Sydney
Vehicle: Holden Calais VX
Posts: 9
My Photos: (0)
I will post some info that I have. This might get you started. First column is a timestamp and the second is the hex message sent. From this first log I found that the changer address seems to be 80 and the head unit 0F. Messages end with 4F. The head unit seems to echo eveything the changer sends it, including 4F. The changer echos everything it is sent too, except for 4F.

804801 seems to mean 'use 4800 baud'
804802 seems to mean 'use 9600 baud'

ON - 4800

'sent from changer
30:22.743 80 AD
30:22.763 80
30:22.763 48
30:22.773 01
30:22.803 0F
30:22.813 48
30:22.823 01
30:22.823 4F
30:22.843 80 '\
30:22.853 48 02 '- Change baud to 9600


'sent from head unit
30:22.733 80
30:22.743 AD 4F
30:22.763 80
30:22.763 48
30:22.773 01
30:22.773 4F
30:22.813 0F
30:22.823 48 01
30:22.833 4F
30:22.833 80 '\
30:22.843 48 02 ' } change baud to 9600
30:22.853 4F '/
mrblau is offline   Reply With Quote
Old 01-01-2005, 07:17 AM   #18
Newbie
 
Join Date: Jul 2004
Location: Sydney
Vehicle: Holden Calais VX
Posts: 9
My Photos: (0)
Then at 9600, this is the last of the startup messages, 80A54F means play.

'sent from changer
32:46.780 00 '??? 9600 baud now ???
32:46.790 80
32:46.800 18 06
32:46.830 FE
32:46.860 80 80 18 06 FE 98
32:46.860 00
32:46.870 80 18
32:46.870 18
32:46.950 80 A7
32:47.281 80 A5
32:47.401 0E 08 01 4F
32:50.95 80 A5

'sent from head unit
32:46.780 00 'reckon we are at 9600 baud now
32:46.780 80
32:46.790 18 06
32:46.790 FE
32:46.800 98
32:46.830 FE
32:46.830 80
32:46.840 80 18
32:46.850 06
32:46.850 FE 98
32:46.880 00 80 18 18 FE 98
32:46.940 80
32:46.960 A7 4F
32:47.0 7C
32:47.30 7C
32:47.50 7C
32:47.70 7C
32:47.91 7C
32:47.111 7C
32:47.141 7C
32:47.161 7C
32:47.181 7C
32:47.201 7C
32:47.221 7C
32:47.241 7C
32:47.271 80
32:47.281 A5 4F
32:47.411 0E 08 01 4F
32:50.75 80 A5 4F
mrblau is offline   Reply With Quote
Old 01-04-2005, 05:10 AM   #19
Newbie
 
Join Date: Sep 2004
Posts: 6
My Photos: (0)
OK, this is slightly beyond my knowledge limits at the moment. I've just received my CD changer, so once I get a cable (or work out the pinout), I'll hook up a serial cable to start poking around.

Cheers,
Andy
andylaurence is offline   Reply With Quote
Old 03-09-2006, 04:20 AM   #20
Newbie
 
Join Date: Dec 2004
Posts: 20
My Photos: (0)
I've started to read the thread, i Have a blaupunkt OEM radio on my car and i will make an adapter or controller to enable the aux input on it, but i didnt't know a way to make a reverse engeniering of the protocol because afther i've read some thread and get some advice i relize that it is 9 bit of data and varible speed rate 4800 to 9600... so somethig have a soluscio to start with the protocol, i've also googled about dms protocol but didn't fine anithing of usefull..
markcame is offline   Reply With Quote
Sponsored Links
Old 07-03-2006, 07:54 AM   #21
Newbie
 
Join Date: Jul 2006
Posts: 4
My Photos: (0)
Blaupunkt Emulation

I have been reading this thread with interest as I am currently working on an interface that will fit between the Blaupunkt headunit in my new fiat and my ipod.

This is going to be a fairly extensive modification as I intend breaking the connection between the headunits internal display and either repeat the headunits on display messages or display ipod data there. I also intend doing the same with the dashboard display.

My hardware interface access all functions of the ipod using the Apple Accessory Protocol. I have constructed my own menu and control system that means I only need three buttons to navigate around it. I have also included a alphabetical search.

My problem comes with getting the analogue audio into the headhunt.

Its has an Aux input if you press the CD button twice the display even shows "AUX" suggesting it has been selected, but if I connect up to the aux input pins I get nothing.

I did a similar project for the Alfa 147 which also has a Blaupunkt head unit, and the same aux input connection. I found that by looping TX and RX data connection round I could fool the unit into thinking it had a CD changer connected. However this unit does not respond to that either.

So after reading this thread I am guess I will need to write some code to emulate the CD changer. I will be using a PIC to achieve this.

As I don't have a CD changer I cant reverse engineer this protocol, so it would be great if some could give me some ideas! Does the headunit send a code to look for a response from the changer at power up? Or does the changer send a code to at power up indicating it is present? what is the protocol all I want to do is open the aux input.

However maybe they cant be opened but then why allow AUX to be selected?

Help!
microkid is offline   Reply With Quote
Old 11-17-2006, 08:54 AM   #22
Newbie
 
Join Date: Nov 2006
Posts: 1
My Photos: (0)
Quote: Originally Posted by microkid View Post
I have been reading this thread with interest as I am currently working on an interface that will fit between the Blaupunkt headunit in my new fiat and my ipod.

This is going to be a fairly extensive modification as I intend breaking the connection between the headunits internal display and either repeat the headunits on display messages or display ipod data there. I also intend doing the same with the dashboard display.

My hardware interface access all functions of the ipod using the Apple Accessory Protocol. I have constructed my own menu and control system that means I only need three buttons to navigate around it. I have also included a alphabetical search.

My problem comes with getting the analogue audio into the headhunt.

Its has an Aux input if you press the CD button twice the display even shows "AUX" suggesting it has been selected, but if I connect up to the aux input pins I get nothing.

I did a similar project for the Alfa 147 which also has a Blaupunkt head unit, and the same aux input connection. I found that by looping TX and RX data connection round I could fool the unit into thinking it had a CD changer connected. However this unit does not respond to that either.

So after reading this thread I am guess I will need to write some code to emulate the CD changer. I will be using a PIC to achieve this.

As I don't have a CD changer I cant reverse engineer this protocol, so it would be great if some could give me some ideas! Does the headunit send a code to look for a response from the changer at power up? Or does the changer send a code to at power up indicating it is present? what is the protocol all I want to do is open the aux input.

However maybe they cant be opened but then why allow AUX to be selected?

Help!

microkid I'm also a 147 owner, I do want to achive this goal.
please let me know if I can help to make it works!!!!
danygate is offline   Reply With Quote
Old 03-30-2007, 06:46 AM   #23
Newbie
 
Join Date: Mar 2007
Location: Denmark
Vehicle: Renault 19 16V
Posts: 5
My Photos: (0)
any progress on this? the dumps recorded here, what serial setup were they made with (stop bits, parity, etc) ?

on the mictronics page it is mentioned that it is a 9 bit protocol and that the last bit is used for sync.. anybody here knows what sort of sync this is ??(mictronics data doesn't fit with parity or anything like that)

regards,
hoover
hooverphonique is offline   Reply With Quote
Old 04-05-2007, 05:46 AM   #24
Newbie
 
Join Date: Mar 2007
Location: Denmark
Vehicle: Renault 19 16V
Posts: 5
My Photos: (0)
ok.. i made an initial test using a scope (i don't have a cd changer)..
there is definately some 9 bit stuff going on here (as mentioned on mictronics.de), but i don't know if the 9th bit is some sort of sync/parity or an actual data bit.. appears to be 4800 bps as well...

edit: judging from mictronics, it looks like bit 8 is high for the first and last word of a frame, and otherwise low.

Last edited by hooverphonique : 04-06-2007 at 07:38 AM.
hooverphonique is offline   Reply With Quote
Old 01-16-2008, 06:23 AM   #25
Newbie
 
Join Date: Jul 2006
Posts: 4
My Photos: (0)
Time for an update / refresh.

I have been trying to figure out the serial coms on the Blaupunkt dms. But as i don't have a cd changer it is proving impossible as I have no idea how it should respond.

I could obviously fire random commands back but I would be there a very long time.

If I had a cd changer i could just T off the serial lines onto my laptop and log all of the communications.

Armed with this information I should be able to make a decent ipod interface.

So couple of questions...

1/ does anyone have an old (but working) Blaupunkt cd changer and lead that will work with the Alfa / Fiat standard fit (i have now turned my attention to the Alfa 937 unit)

2/ does any one have an Alfa GT or 147 Blaupunkt MP3 head unit for sale?
microkid is offline   Reply With Quote
Sponsored Links
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
CD Changer Converter for Jeep? aperry General Hardware Discussion 10 11-15-2007 09:06 PM
Connect external audio source to Clarion unit via cd changer plug vpapanik General Hardware Discussion 7 09-21-2005 05:55 PM
MP3 Changer questions. PaulVS General MP3Car Discussion 7 03-05-2004 06:37 PM
blaupunkt pinouts jure1873 General Hardware Discussion 5 05-18-2002 08:15 AM
Tricking the head unit into thinking the mp3car is a cd changer SeenaStyle General Hardware Discussion 1 05-02-2000 12:06 AM


All times are GMT -5. The time now is 04:55 AM.


Sponsored Links
The MP3car.com Store

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
Copyright © 1999 - 2008 Mp3Car.com Inc.
Ad Management by RedTyger
Message Board Statistics