Hide minor edits - Show changes to markup
If you have implemented the max202 serial conversion, you just need to connect it to the pc and follow the instructions below.
If you have implemented the (optionnal) max202 serial conversion (as in the original gnunilink schematic), you just need to connect it to the pc and follow the instructions below.
You can check if the serial link works because gnunilink send a 0x55 byte at power up when SERIAL_SOFT is enabled.
You can also check the serial connection by enabling SERIAL_SOFT_DEBUG, which makes gnunilink infinitely send bytes from 0 to 255.
Note that when SERIAL_SOFT is enabled, the GNUnilink will transmit a single 0x55 at initialization. You must see that character if your serial connection is working correctly (use ./logger.py com0:38400:1)
Note that when SERIAL_SOFT is enabled, the GNUnilink will transmit a 0x55 during initialization (or power up) for debug.
You must check and see that character if your serial connection is working correctly (use ./logger.py com0:38400:1)
To enable logging inside the GNUnilink.asm, uncomment SERIAL_SOFT and SERIAL_LOG defines.
There is also a debug mode: ./logger.py com0:38400:1 will display all received bytes on 1 column. You can have more column but beware that lines won't be displayed until all character of the line are received.
Note that when SERIAL_SOFT is enabled, the GNUnilink will transmit a single 0x55 at initialization. You must see that character if your serial connection is working correctly (use ./logger.py com0:38400:1)
You can find the logger and my command.txt version in the here.
You can find the latest logger and command.txt version here.
You can find the logger and my command.txt version in the http://svn.versiondude.net/sophana/UnilinkLogger/:here.
You can find the logger and my command.txt version in the here.
You can find the logger and my command.txt version in the download files section.
You can find the logger and my command.txt version in the http://svn.versiondude.net/sophana/UnilinkLogger/:here.
If you don't have a max202, no problem, you can directly connect the serial cable to the pic (GND and pin 8 (RB2)). But you will have to change the GNUnilink.asm source file and invert the SERIAL_0 and SERIAL_1 defines so that the serial output is inverted.
If you don't have a max202, no problem, you can directly connect the serial cable to the pic (GND and pin 8 (RB2)). But you will have to change the GNUnilink.asm and enable serial level inversion.
Since recent versions, serial level inversion is made by uncommenting the SERIAL_SOFT_INVERTED define. Make sure SERIAL_OPEN_COL is commented.
The GNUnilink serial frequency is set to 19200
To use the serial port directly (COM1: at 19200bit/s), type
./logger.py com0:19200
You can find the logger and my command.txt version in the download files section.
You can find the logger and my command.txt version in the download files section.
The rockbox mod is not totally compatible with recorders because I directly hacked the player lcd code to reproduce it on the HU.
That part of the code just updates the string to be displayed on the HU. I hacked the LCD code because it already does the scrolling and it does work in all mode of the archos (including folder navigation)
The part that updates the track time and number should still work, the control part of the archos should also work. (or at least with very minor modifications)
It should be VERY easy to display the current song name (8 chars). Making it scroll need a little more programming.
Making it compatible with folder navigation and config menus should be done by hacking the lcd code also. It should not be too different from the player part.
I bought a recorder not very long ago, but the mods I made on my player (for auto power on) makes it not compatible with my recorder headphone pin. I can help you modifying rockbox for full support, but I can't try it easily. The major reason is also that my HU is in my car...
The rockbox mod is now compatible with recorders thanks to devro.
Please check the RockBox page
If you have a problem, and your HU does not work with the GNUnilink, you have to be sure that the pic works and is executing code.
Once you are sure that the pic works, you'll have to connect a serial cable to the pic to see what is going on between the HU and the GNUnilink.
If you have implemented the max202 serial conversion, you just need to connect it to the pc and follow the instructions below.
If you don't have a max202, no problem, you can directly connect the serial cable to the pic (GND and pin 8 (RB2)). But you will have to change the GNUnilink.asm source file and invert the SERIAL_0 and SERIAL_1 defines so that the serial output is inverted.
The first argument should contain the name of the log to be read.
The first argument should contain the name of the log to be read. This log should be ascii containing hexadecimal numbers.
I wrote an unilink logger in python because the existing one was written in delphi and had a bug.
The script opens a commands.txt file in the current dir. You can find my version in the download files section.
The first argument should contain the name of the log to be read. Use com0:57600 as argument to open COM1?: at 57600 bit/s. The serial port uses a python library named pyserial.
I wrote an unilink logger in python because the existing one was written in delphi and had a bug.
The script opens a commands.txt file in the current dir which is compatible with the delphi logger.
You can find the logger and my command.txt version in the download files section.
This logger needs a serial driver module that you can download from http://pyserial.sourceforge.net
The first argument should contain the name of the log to be read.
To use the serial port directly, use com0:19200 as argument to open COM1?: at 19200bit/s.
To program the pic directly in the gnunilink, I implemented a programmer compatible with ic-prog on the parallel port. The original schaer programmer schematic is the base. For the power take the 12v from the unilink connector and the 5v from the regulator
The rockbox mod is not totally compatible with recorders because I directly hacked the player lcd code to reproduce it on the HU.
if you have a 7407, do like the original. I did not have 7407 so I used NPN transistors. The simplification is that you only need 2 open collector inverter that you can implement with a npn transistor: the one from D0 to "RB7?" and the one from D2 to MCLR
That part of the code just updates the string to be displayed on the HU. I hacked the LCD code because it already does the scrolling and it does work in all mode of the archos (including folder navigation)
if you do the simplification dont forget to invert the data out and clock in icprog.
The part that updates the track time and number should still work, the control part of the archos should also work. (or at least with very minor modifications)
For MCLR, I used a 3 way jumper selecting the programming or the functionnal more. There surely is an automatic way but I did not test it.
It should be VERY easy to display the current song name (8 chars). Making it scroll need a little more programming.
You dont need the power control part of the schaer programmer (the D3 pin)
It is a MUST HAVE feature. When you start your car, the archos is started automatically. To do that I moded my player because it cannot be flashed. Flashed recorders can start automatically with power applied. The gnunilink does have 2 control signals: one for controling the power through a power transistor, one for simulating the 'ON' button push. contact me in the forum for more details on the mod.
The rockbox mod is not totally compatible with recorders because I directly hacked the player lcd code to reproduce it on the HU.
Making it compatible with folder navigation and config menus should be done by hacking the lcd code also. It should not be too different from the player part.
That part of the code just updates the string to be displayed on the HU. I hacked the LCD code because it already does the scrolling and it does work in all mode of the archos (including folder navigation)
I bought a recorder not very long ago, but the mods I made on my player (for auto power on) makes it not compatible with my recorder headphone pin. I can help you modifying rockbox for full support, but I can't try it easily. The major reason is also that my HU is in my car...
The part that updates the track time and number should still work, the control part of the archos should also work. (or at least with very minor modifications)
I wrote an unilink logger in python because the existing one was written in delphi and had a bug.
It should be VERY easy to display the current song name (8 chars). Making it scroll need a little more programming.
The script opens a commands.txt file in the current dir. You can find my version in the download files section.
Making it compatible with folder navigation and config menus should be done by hacking the lcd code also. It should not be too different from the player part.
The first argument should contain the name of the log to be read. Use com0:57600 as argument to open COM1?: at 57600 bit/s. The serial port uses a python library named pyserial.
I bought a recorder not very long ago, but the mods I made on my player (for auto power on) makes it not compatible with my recorder headphone pin. I can help you modifying rockbox for full support, but I can't try it easily. The major reason is also that my HU is in my car...
The GNUnilink serial frequency is set to 19200
I wrote an unilink logger in python because the existing one was written in delphi and had a bug.
The script opens a commands.txt file in the current dir. You can find my version in the download files section.
The first argument should contain the name of the log to be read. Use com0:57600 as argument to open COM1?: at 57600 bit/s. The serial port uses a python library named pyserial.
The GNUnilink serial frequency is set to 19200
... more to come...
... more to come...
The schematic is very simple. There are very few components. The main component is a PIC microcontroller which needs to be programmed (which is also easy to make) You need a generic board, place the components and connect the few needed connections. The original schematic is on the original Gnunilink project website. The serial communication between pic and archos is totally handled by software. The pic uart is not used because I don't have a 16f628 and I don't think it is possible to perform an open collector communication with it. You can choose any pic PIO pin to communicate. (I think I use port B3) Make a direct connection. Then just add a 10k pull up resistor to the PIC vcc.
... more to come...
I wrote an unilink logger in python because the existing one was written in delphi and had a bug.
The script opens a commands.txt file in the current dir. You can find my version in the download files section.
The first argument should contain the name of the log to be read. Use com0:57600 as argument to open COM1?: at 57600 bit/s. The serial port uses a python library named pyserial.
The GNUnilink serial frequency is set to 19200
... more to come...
The gnunilink project consist of a PIC microcontroller emulating a CD changer with the unilink protocol. The Archos jukebox (player, studio and recorder models) have a remote control pin in the headphone connector. This remote control pin is connected to the archos internal processor serial communication controller. It is possible to make bidirectionnal serial communications through this pin. The project simply consist in modifying both projects to make them talk together.
The schematic is very simple. There are very few components. The main component is a PIC microcontroller which needs to be programmed (which is also easy to make) You need a generic board, place the components and connect the few needed connections. The original schematic is on the original Gnunilink project website. The serial communication between pic and archos is totally handled by software. The pic uart is not used because I don't have a 16f628 and I don't think it is possible to perform an open collector communication with it. You can choose any pic PIO pin to communicate. (I think I use port B3) Make a direct connection. Then just add a 10k pull up resistor to the PIC vcc.
To program the pic directly in the gnunilink, I implemented a programmer compatible with ic-prog on the parallel port. The original schaer programmer schematic is the base. For the power take the 12v from the unilink connector and the 5v from the regulator
if you have a 7407, do like the original. I did not have 7407 so I used NPN transistors. The simplification is that you only need 2 open collector inverter that you can implement with a npn transistor: the one from D0 to "RB7?" and the one from D2 to MCLR
if you do the simplification dont forget to invert the data out and clock in icprog.
For MCLR, I used a 3 way jumper selecting the programming or the functionnal more. There surely is an automatic way but I did not test it.
You dont need the power control part of the schaer programmer (the D3 pin)
It is a MUST HAVE feature. When you start your car, the archos is started automatically. To do that I moded my player because it cannot be flashed. Flashed recorders can start automatically with power applied. The gnunilink does have 2 control signals: one for controling the power through a power transistor, one for simulating the 'ON' button push. contact me in the forum for more details on the mod.
The rockbox mod is not totally compatible with recorders because I directly hacked the player lcd code to reproduce it on the HU.
That part of the code just updates the string to be displayed on the HU. I hacked the LCD code because it already does the scrolling and it does work in all mode of the archos (including folder navigation)
The part that updates the track time and number should still work, the control part of the archos should also work. (or at least with very minor modifications)
It should be VERY easy to display the current song name (8 chars). Making it scroll need a little more programming.
Making it compatible with folder navigation and config menus should be done by hacking the lcd code also. It should not be too different from the player part.
I bought a recorder not very long ago, but the mods I made on my player (for auto power on) makes it not compatible with my recorder headphone pin. I can help you modifying rockbox for full support, but I can't try it easily. The major reason is also that my HU is in my car...
... more to come...