GPS from TomTom Go 300 (Cirocomm G100/300 580)

By James on Tue, 17/08/2010 - 17:40

My mate kindly donated his old broken TomTom Go 300 from which I was hoping to steal the GPS chip and antenna for use in my Arduino projects. I opened it up and found the GPS unit, it was labeled Cirocomm G100/300 580 but I couldn't find much info about this on the net, there were several posts of people with them asking about the pin outs and one site where someone had apparently got it to work but unfortunately hadn't detailed the pin outs. So, I had to resort to trial and error at the risk of blowing it up... It seems luck was on my side and I soon got it working, I will detail the pins I used as others seem to be after the info, I can't grantee they are the "correct" pins, but they work for me...


I soldered to the small gold TP circles that were dotted over the board, rather than the ribbon cable connector its self. I'm guessing these are test points connect directly to the ribbon connector and other interesting places. There is a large group of them on the board on the opposite side to the ribbon connector. These are the connection I used:

TP28 = VCC (+5V)
TP6 = GND
TP4 = TX (4800 baud)

And thats it, if all goes well, on the TX line you should be receiving this kind of data:

$PSRFTXT,Version: 2.4.13.03-XIAC2.0.2-C3PROD1.0 *5F
$PSRFTXT,TOW: 160126*17
$PSRFTXT,WK: 1597*6F
$PSRFTXT,POS: 4043192 -123430 4914862*32
$PSRFTXT,CLK: 95692*2C
$PSRFTXT,CHNL: 12*73
$PSRFTXT,Baud rate: 4800 System clock: 24.553MHz*76
$GPGGA,203059.357,5043.9983,N,00144.8843,W,1,04,6.6,92.4,M,,,,0000*25
$GPGSA,A,3,19,24,03,06,,,,,,,,,18.2,6.6,17.0*34
$GPGSV,3,1,11,19,83,281,28,24,69,066,33,03,59,142,33,22,46,069,*75
$GPGSV,3,2,11,06,45,131,28,11,24,265,,18,18,045,30,28,14,323,*7E
$GPGSV,3,3,11,14,10,115,23,08,10,296,,32,10,196,*43
$GPRMC,203059.357,A,5043.9983,N,00144.8843,W,0.00,,160810,,,A*6F
$GPVTG,,T,,M,0.00,N,0.0,K,N*1C

Thats NMEA data and some of those lines will constantly repeat every second or so with updated geo coords and other interesting info.

The $GPGGA line is the interesting line containing 5043.9983,N,00144.8843,W which = 50° 43.9983' N and 1° 44.8843' W. If you are looking to plot this on google maps dont be fooled by the fact that its in degrees and decimal minutes and that google maps uses decimal degrees so some conversion is required.

Hope this helps and let me know what cool devices you make from this unit :)