|
 |
|
02-28-2006, 01:46 PM
|
#256
|
|
Variable Bitrate
Join Date: Apr 2005
Location: Belgium
Posts: 325
|
Quote: Originally Posted by nisianp
I bought a radio cd player (model DC 278/62B) with these connections.
I tried to connect the cd player but I couldn’t connect the screen connector from my car to new radio cd.
Does anyone know if I can connect the cd player to my car, and how ?
Please help.
I guess this is off topic, so you might get better advice on a Renault specific forum, but well...
If by "connect the cd player to the car", you mean the power and speakers connectors, I think, yes. But regarding the display (yellow connector), no idea... And no idea if it's absolutely needed or optional.
Try maybe on http://forum.planeterenault.com [fr], http://www.renault-board.de [de], http://www.renaultforum.nl/Forum/ [nl], http://citroenpicasso.org.uk/renault/ [uk]... and I guess there's a greek equivalent but I don't speak the language :-) :-(
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
02-28-2006, 01:55 PM
|
#257
|
|
Constant Bitrate
Join Date: Feb 2006
Posts: 113
|
It's also available at conrad.com (article number 378650 - 62) but if you don't live in germany (I don't) shipping costs are huge (15-30€ depending on country)
Edit: I mean the blue connector
Edit2: and the minimum order is 50€
Last edited by pippolippi; 02-28-2006 at 01:58 PM.
|
|
|
02-28-2006, 02:52 PM
|
#258
|
|
Constant Bitrate
Join Date: Feb 2006
Posts: 113
|
Quote: Originally Posted by slimmegane
Where I can find a female connector to connect to HU ???
Slimmegane, in italy phonocar has this connector in its catalogue: go to http://www.phonocar.it/prodotti.html select "accessori", "cavi", "connettori per autoradio". Then you have to find a phonocar dealer.
I suspect it will be cheaper to buy from ebay
|
|
|
02-28-2006, 04:27 PM
|
#259
|
|
Variable Bitrate
Join Date: Feb 2005
Location: Italy/Lecce
Posts: 230
|
Thanks to all, now I can try to find here in local or i will buy from adapter ebay shop  Thanks!
|
|
|
02-28-2006, 07:52 PM
|
#260
|
|
Variable Bitrate
Join Date: Apr 2005
Location: Belgium
Posts: 325
|
Y E S
Well, it works !
I knew software was easier than hardware :-)
Like for the hardware part, maybe I'm using a hammer to kill flies, but what I did was completely mimic the startup sequence of the original CD changer :
- send BOOTING frames, retrying each one 3 times until I get an Ack, and if I don't receive one, increment the ID and try again 3 times one second later, etc until 10 successive IDs have been tried, then go back to ID=0 and start again.
- once I get an acknowledge, send the RANDOM_STATUS, then the TRAY_STATUS, then the RANDOM_STATUS again and switch to STANDBY mode (1 STANDBY frame every second)
- when I receive a SELECTED_CDC (which I renamed REQ_CD_INFO), reply with fake CD information (10 tracks, 60:00:00 TRT)
- when I receive a START_PLAY, switch to PLAYING state (1 PLAYING frame every second)
All this is in a finite state machine but I'm still not very satisfied of the architecture...
Like for the 10K resistor, maybe we'll soon see that sending only PLAYING frames is sufficient, but for now I prefer having a strong architecture ready to simulate every situation.
Currently, I can start the application, then as soon as I turn the HU on, it accepts to switch to CD Changer position without the actual CD changer being attached, and it displays TR1 CD1.
I'll go further soon, but I really need some sleep :-)
Updated source code is attached, and here's a picture showing the TR1 CD1 display with the original CDC unplugged :-)
Last edited by Vicne; 02-28-2006 at 07:57 PM.
|
|
|
03-01-2006, 02:29 AM
|
#261
|
|
Constant Bitrate
Join Date: Feb 2006
Posts: 113
|
Quote: Originally Posted by Vicne
Well, it works !
Congratulations! From now on things can only get easier.
I didn't have time yet to build the interface, but I hope to do it soon and join the club of happy emulation users
|
|
|
03-01-2006, 04:57 AM
|
#262
|
|
Newbie
Join Date: Feb 2006
Posts: 28
|
Quote: Originally Posted by Vicne
Well, it works !
I knew software was easier than hardware :-)
Congratulations Vicne..
Something is broken in my interface or in my code (or in my brain) sometime i see in the display TR1 (open champagne) but after few seconds ERROR (close champagne)(and sometimes the HU ask my the SECURITY CODE ) , i will investigate tonight.
Again congratulations...
pep
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
03-01-2006, 05:07 AM
|
#263
|
|
Variable Bitrate
Join Date: Feb 2005
Location: Italy/Lecce
Posts: 230
|
Quote: Originally Posted by peppuz79
Congratulations Vicne..
Something is broken in my interface or in my code (or in my brain) sometime i see in the display TR1 (open champagne) but after few seconds ERROR (close champagne)(and sometimes the HU ask my the SECURITY CODE ) , i will investigate tonight.
Again congratulations...
pep
Hi Peppuz, this will make think me, is possible that there was some connector ins't connect good and make faults connects? (excuse for my english !)
Vicne do you any problem after some minutes? Is possible that the HU if not receive by CDC the progress of track go in error?
Now I've found the MINI ISO connector here in local, now I must buy this and the MAX 232 or I can buy MAX233? What's the differences of schematic whit MAX233? Only the capacitor?
Thanks in advance!
P.S. Peppuz where are you from? You're Italian? Do you know M2TC?
|
|
|
03-01-2006, 05:43 AM
|
#264
|
|
Variable Bitrate
Join Date: Apr 2005
Location: Belgium
Posts: 325
|
Quote: Originally Posted by peppuz79
Congratulations Vicne..
Something is broken in my interface or in my code (or in my brain) sometime i see in the display TR1 (open champagne) but after few seconds ERROR (close champagne)
:-)
I had a few errors in the beginning, either because I wasn't acknowledging its frames or because I didn't switch to "PLAYING" when the HU sent "START_PLAY", but now it's ok.
Maybe you can test with my code and see if it works. If it doesn't, it probably is a hardware problem...
Quote:
(and sometimes the HU ask my the SECURITY CODE )
:-o
I never had that ! I thought it was only needed when HU was disconnected from power (I never disconnected it though :-)).
Good luck
Last edited by Vicne; 03-01-2006 at 05:52 AM.
|
|
|
03-01-2006, 05:47 AM
|
#265
|
|
Variable Bitrate
Join Date: Apr 2005
Location: Belgium
Posts: 325
|
Quote: Originally Posted by slimmegane
Vicne do you any problem after some minutes? Is possible that the HU if not receive by CDC the progress of track go in error?
Not a single problem with the last version. After the init sequence, I simply sent the same PLAYING frame with times 00:00:01:00 / 00:00:01:00 over and over again.
I could see it worked, then leave the garage, fetch the camera, come back, take a few shots and then I stopped...
All in all, I think it has played for around 2 minutes without a problem...
Oh, however, I observed a strange thing : after that, I reswitched a few times to tuner, reset the emulator to BOOTING, switch to CDC, etc and ended up on TR 1 CD 4 !
In the startup dialog, I only sent CD information about CD 1, so I don't know where the 4 came from... I'll have to investigate that too...
Last edited by Vicne; 03-01-2006 at 05:50 AM.
|
|
|
03-01-2006, 08:40 AM
|
#266
|
|
Variable Bitrate
Join Date: Apr 2005
Location: Belgium
Posts: 325
|
Quote: Originally Posted by slimmegane
Now I must buy this and the MAX 232 or I can buy MAX233? What's the differences of schematic whit MAX233? Only the capacitor?
Well, MAX232 is general purpose with 1uF capacitors (see page 17 of the data sheet) while MAX233 has internal capacitors (simpler but more expensive, see page 21 of the same file) and MAX3232 is a low power version using 0.1uF capacitors (or 0.47uF for C2,C3,C4 if powered at 5V).See page 12 of data sheet for wiring and page 9 table 2 for capacitor values...
In the end, any of them will work once wired correctly. Their I/O characteristics are the same. Take care however that MAX232 and 3232 are pin-layout compatible while MAX233 has another pin layout
Last edited by Vicne; 03-01-2006 at 08:43 AM.
|
|
|
03-01-2006, 02:07 PM
|
#267
|
|
Variable Bitrate
Join Date: Feb 2005
Location: Italy/Lecce
Posts: 230
|
Hi Vicne, I've buy all component, now I must mount all, but where (which pin) I must connect the SPDIF output of my creative?
Can you post a schematic whithout the CD Changer?
Thanks a lot 
Slim
|
|
|
03-01-2006, 03:01 PM
|
#268
|
|
Variable Bitrate
Join Date: Apr 2005
Location: Belgium
Posts: 325
|
Quote: Originally Posted by slimmegane
Hi Vicne, I've buy all component, now I must mount all, but where (which pin) I must connect the SPDIF output of my creative?
Can you post a schematic whithout the CD Changer?
SPDIF input is on pin18 and SPDIF ground is on pin 19. Here's a schema.
Note that the first part of the test is to have your HU allow you to switch to CDC and display TR1 CD1. If that's OK, then you can test the actual SPDIF sound. I myself tested with a Sound Blaster Live Platinium before the Via Epia and both worked OK, so I'm rather confident regarding that.
Last edited by Vicne; 03-01-2006 at 03:15 PM.
|
|
|
03-01-2006, 04:14 PM
|
#269
|
|
Variable Bitrate
Join Date: Feb 2005
Location: Italy/Lecce
Posts: 230
|
But whithout the CDC I don't made any test?
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
03-01-2006, 05:14 PM
|
#270
|
|
Variable Bitrate
Join Date: Apr 2005
Location: Belgium
Posts: 325
|
Quote: Originally Posted by slimmegane
But whithout the CDC I don't made any test?
Sorry, not sure I understand your question.
What I mean is that SPDIF and Serial Port are completely independant :
- You can first wire the serial port, MAX chip, transistor, etc to pins 13 and 14, start the software, then the head unit, and check that you can then change source to CD changer and see the head unit display "TR1 CD1"
- If that works, then you can wire pins 18/19 to a SPDIF source and check that it works too and that you can hear sound through the Head Unit.
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
|
Currently Active Users Viewing This Thread: 4 (0 members and 4 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 12:43 PM.
| |