Hello everyone,
I have a bit of a problem. I am running Garmin XT on my windows C.E chinese gps.
Here are the specs:
Unit: Processor : Atlas 3
Ram: 64mb
Software version : c2-3.5-v2.1.0.s-en
I c'ant figure out how to find the windows c.e version.
I am running Garmin XT 5.00.10wp.
I chose this version because this is the version I got working. Everything works fine, but i seem to have a problem with the mapsource transfer.
The routes and waypoints and the maps transfer to the card, but only the maps work. The routes and locations do not.
I checked the "GarminDevice.xml" file and i noticed this line of code:
Code:
<File>
<Specification>
<Identifier>http://www.topografix.com/GPX/1/1</Identifier>
<Documentation>http://www.topografix.com/GPX/1/1/gpx.xsd</Documentation>
</Specification>
<Location>
<Path>/Garmin/gpx/</Path>
<BaseName>current</BaseName>
<FileExtension>gpx</FileExtension>
</Location>
<TransferDirection>InputOutput</TransferDirection>
</File>
To me it looks like it should read like this:
Code:
<File>
<Specification>
<Identifier>http://www.topografix.com/GPX/1/1</Identifier>
<Documentation>http://www.topografix.com/GPX/1/1/gpx.xsd</Documentation>
</Specification>
<Location>
<Path>/SDMMC/Garmin/gpx/</Path>
<BaseName>current</BaseName>
<FileExtension>gpx</FileExtension>
</Location>
<TransferDirection>InputOutput</TransferDirection>
</File>
I think that this might be the problem (please correct me if i'm wrong). I tried editing the xml, but each time i restart the device, the changed xml is lost. Even if I erase the xml it reappears.
Could someone please help me with this? A codefix or a garmin xt version that might work properly would be most useful.
here is the contents of the "Garmin.mscr" file:
Code:
Errorlevel("warn")
If(WndExists("Garmin Mobile XT"))
Show("Garmin Mobile XT")
Exit
EndIf
If(not ProcExists("explorer.exe"))
Run("\windows\explorer.exe")
Sleep(400)
EndIf
#Hide Taskbar
Run(SystemPath("ScriptPath")\"TaskbarHide.exe")
Sleep(500)
Run(SystemPath("ScriptPath")\"TaskbarHide.exe")
#Copy previous stored settings to \Garmin
XCopy(SystemPath("ScriptPath")\"Settings\*.*", "\Garmin", TRUE)
#Run Garmin Mobile XT.
#This script will not go to the next command before que.exe completely shut down
RunWait(SystemPath("ScriptPath")\"..\Apps\WM\que.exe")
#Save new settings back to SD Card
XCopy("\Garmin\*.*", SystemPath("ScriptPath")\"Settings", TRUE)
#Show Taskbar
Run(SystemPath("ScriptPath")\"TaskbarShow.exe")
If(ProcExists("explorer.exe"))
Kill("explorer.exe")
EndIf