blob: 2031f6fdb968daec28885a855a78a3fe4e1ada08 [file] [log] [blame]
Dave Chapman71cdf002007-10-20 09:11:34 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 ****************************************************************************/
11
12tcctool
13-------
14
15tcctool is a utility for uploading code to Telechips TCC77x based
16devices in USB boot mode.
17
18It has been tested on the iaudio 7 and Logik DAX DAB/MP3 Player, but
19should work on other devices if the appropriate magic value is
20identified from existing "firmware recovery" programs - see the
21"devices" array in tcctool.c
22
23It can be used for safely testing firmware images before performing a
24firmware upgade.
25
26A first test when using tcctool on a new device can be to upload the
27original firmware. If you do this, make sure you upload the same
28version that is installed on your player - otherwise you may find
29yourself with corrupted config files and music database.
Dave Chapmana5e4cc92007-11-10 20:26:54 +000030
31
32Building for Windows
33--------------------
34
351) Download libusb-win32-device-bin-0.1.12.1.tar.gz from:
36
37http://sourceforge.net/project/showfiles.php?group_id=78138
38
392) Extract libusb-win32-device-bin-0.1.12.1.tar.gz in the tcctool
40source directory.
41
423) Type "make tcctool.exe" to compile.
43
444) Copy the following four files from libusb-win32-device-bin-0.1.12.1/bin
45to tcctool-driver-win32/
46
47libusb0.dll
48libusb0.sys
49libusb0_x64.dll
50libusb0_x64.sys
51
525) Create the tcctool-win32.zip file from the directory above tcctool as follows:
53
54zip tcctool-win32.zip tcctool/tcctool.exe tcctool/tcctool-windows.txt tcctool/tcctool-driver/win32/*
55
566) See tcctool/tcctool-windows.txt for Windows usage instructions.