Jan 12th, 2009, 4:22 pm
If you like trying
Try this one PortSplitter 1.1:
http://www.megaupload.com/?d=7FXZLSKF
Maybe it will help
Jan 12th, 2009, 4:22 pm

Mio C520, MioMap v3.3 Jan'08, Simple Unlock for MioC520, Jerry's skin - 2009.03.15 - Override - 2008.09.14
Garmin Mobile XT, Map Lietuvos TOPO 1.083NT
TomTom 7.910, Map Wester_and_Eastern_Europe_840_2306
iGO v8.3.4
Nokia N8
GMXT 5.00.60, Map LT TOPO 1.11
Ovi Maps 3.07
Jan 12th, 2009, 4:30 pm
Mio 720, I got your point.
The script runs fine, perfectly I'd say. Of course I launch the script and the parameters are corect (2/7 or 3/7).
I can see Port Splitter starting. I've let the taskbar unhided to see what happens, hope it's no problem.
Then the GMXT starts, but stops after a few second and I get that message.
Now, If I click in task bar the PS, I can see it working fine, splitting signal from COM7 to COM0. Next, If I click OK on the error message window, PS stops correctly and close. The registry are cleared, I've checked with regedit.
So, script runs fine.
Now, IF I select a parameters combination that do not start port splitter, GMXT works fine, but it doesn't detect gps receiver. So I don't see that bars but the other symbol. Even so, IF I still manualy select COM0 as output in PS ant click start, it starts splitting but after few seconds GMXT stops with this new error.

Image Image

I think both errors, corresponding to both versions of Port Splitter, are somehow related.

My current version of .mscr in which I change only first parameter. The Install folder is different because the way Port Splitter installs, but same problem if I copy port splitter exe and his dll to rungmxt folder and modify the script accordingly.
Code: Select allErrorlevel("warn")

If(WndExists("Garmin Mobile XT"))
   Show("Garmin Mobile XT")
   Exit
EndIf

#Registry for Port Splitter
RegWriteString( "HKLM", "SOFTWARE\JAL\Port Splitter", "InstallPath", "\SDMMC\JAL Port Splitter" )
RegWriteDWord( "HKLM", "SOFTWARE\JAL\Port Splitter", "MajorVersion", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Split", 2 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Autostart", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Baud", 11 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Port", 7 )

#Run Port Splitter if not exists
If(not ProcExists("Port Splitter.exe"))
   Run("\SDMMC\JAL Port Splitter\Port Splitter.exe")
   Sleep(5000)
EndIf

#Copy previous stored settings to \Garmin
XCopy("SDMMC\Garmin\RunGMXT\Settings\*.*","\Garmin", TRUE)

#Run Garmin Mobile XT.
#This script will not go to the next command before que.exe completely shut down
RunWait("\SDMMC\Garmin\Apps\WM\que.exe")

#Save new settings back to SD Card
XCopy("\Garmin\*.*","\SDMMC\Garmin\RunGMXT\Settings", TRUE)

#Stop Port Splitter before killing it
#If the port splitting are not stopped before killing the process,
#it will not work again even you run Port Splitter again without soft reset
If(WndExists("Port Splitter V1.20"))
   #Stop button
   SendCommand("Port Splitter V1.20", 1010)
   Sleep(500)
   #Exit button
   SendCommand("Port Splitter V1.20", 2)
   Sleep(500)
EndIf

#Kill Port Splitter process
If(ProcExists("Port Splitter.exe"))
   Kill("Port Splitter.exe")
EndIf

#Clean all registry for Port Splitter
#RegDeleteKey( "HKLM", "SOFTWARE\JAL", TRUE, TRUE )
#RegDeleteKey( "HKCU", "Software\JAL", TRUE, TRUE )



PS: Thank you very much, admuerte, I download now and will try.
Jan 12th, 2009, 4:30 pm
Jan 12th, 2009, 4:42 pm
LuluMOB wrote:Mio 720, I got your point.
The script runs fine, perfectly I'd say. Of course I launch the script and the parameters are corect (2/7 or 3/7).
I can see Port Splitter starting. I've let the taskbar unhided to see what happens, hope it's no problem.
Then the GMXT starts, but stops after a few second and I get that message.
Now, If I click in task bar the PS, I can see it working fine, splitting signal from COM7 to COM0. Next, If I click OK on the error message window, PS stops correctly and close. The registry are cleared, I've checked with regedit.
So, script runs fine.
Now, IF I select a parameters combination that do not start port splitter, GMXT works fine, but it doesn't detect gps receiver. So I don't see that bars but the other symbol. Even so, IF I still manualy select COM0 as output in PS ant click start, it starts splitting but after few seconds GMXT stops with this new error.

Image Image

I think both errors, corresponding to both versions of Port Splitter, are somehow related.

My current version of .mscr in which I change only first parameter. The Install folder is different because the way Port Splitter installs, but same problem if I copy port splitter exe and his dll to rungmxt folder and modify the script accordingly.
Code: Select allErrorlevel("warn")

If(WndExists("Garmin Mobile XT"))
   Show("Garmin Mobile XT")
   Exit
EndIf

#Registry for Port Splitter
RegWriteString( "HKLM", "SOFTWARE\JAL\Port Splitter", "InstallPath", "\SDMMC\JAL Port Splitter" )
RegWriteDWord( "HKLM", "SOFTWARE\JAL\Port Splitter", "MajorVersion", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Split", 2 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Autostart", 1 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Baud", 11 )
RegWriteDWord( "HKCU", "Software\JAL\Port Splitter", "Port", 7 )

#Run Port Splitter if not exists
If(not ProcExists("Port Splitter.exe"))
   Run("\SDMMC\JAL Port Splitter\Port Splitter.exe")
   Sleep(5000)
EndIf

#Copy previous stored settings to \Garmin
XCopy("SDMMC\Garmin\RunGMXT\Settings\*.*","\Garmin", TRUE)

#Run Garmin Mobile XT.
#This script will not go to the next command before que.exe completely shut down
RunWait("\SDMMC\Garmin\Apps\WM\que.exe")

#Save new settings back to SD Card
XCopy("\Garmin\*.*","\SDMMC\Garmin\RunGMXT\Settings", TRUE)

#Stop Port Splitter before killing it
#If the port splitting are not stopped before killing the process,
#it will not work again even you run Port Splitter again without soft reset
If(WndExists("Port Splitter V1.20"))
   #Stop button
   SendCommand("Port Splitter V1.20", 1010)
   Sleep(500)
   #Exit button
   SendCommand("Port Splitter V1.20", 2)
   Sleep(500)
EndIf

#Kill Port Splitter process
If(ProcExists("Port Splitter.exe"))
   Kill("Port Splitter.exe")
EndIf

#Clean all registry for Port Splitter
#RegDeleteKey( "HKLM", "SOFTWARE\JAL", TRUE, TRUE )
#RegDeleteKey( "HKCU", "Software\JAL", TRUE, TRUE )



PS: Thank you very much, admuerte, I download now and will try.


If i'm not wrong with this one your first Pic is the right one but you must wait a little bit untel the app get the signal from the satelliet up in the sky +/- 36ooo tho far away so just wait and then watch the color show of this nice Garmin gps mate ;)

Ps: i did not reading all the post you just did because i'm a little busy with other mate and writing an email to him so that's why but i shall back to you mate to helping you out :)
Jan 12th, 2009, 4:42 pm
Jan 12th, 2009, 4:57 pm
Oh, thanks, it's no hurry, of course, only when you have some time. It's just that I have like a needle in my foot, it's impossible not to work, or at least I'd like to understand WHY.
As I said, usually it crashes before I can see that bars, I only had a few seconds to catch that picture with the bars. My suspicion is that it crashes exactly when starts scanning for satellites, IF the gps port is enabled and gps receiver is accessible, otherwise it doesn't crash (but no gps receiver found).

Now I have all 3 versions of P-S and 3 different scripts that access them. And of course 3 different behaviors (2 types of errors).
Maybe I will make a short movie to see how it works and post on youtube.
Jan 12th, 2009, 4:57 pm
Jan 12th, 2009, 5:20 pm
LuluMOB wrote:Oh, thanks, it's no hurry, of course, only when you have some time. It's just that I have like Eye of the needle , Oh mate i really love that old movie but in the end of it there was as always a woman there killing the heart :D , in my foot, it's impossible not to work, or at least I'd like to understand WHY.
As I said, usually it crashes before I can see that bars, I only had a few seconds to catch that picture with the bars. My suspicion is that it crashes exactly when starts scanning for satellites, IF the gps port is enabled and gps receiver is accessible, otherwise it doesn't crash (but no gps receiver found).

Now I have all 3 versions of P-S and 3 different scripts that access them. And of course 3 different behaviors (2 types of errors).
Maybe I will make a short movie to see how it works and post on youtube.
Do that mate i like to watch movie's :)

Mate,
If i got you right with that one you have to clean the stuff you messed it up already and starting from the beginning as a fresh start one then let the app take his time for at least 15 mins when it’s trying to get the signal from there before you trying things again (I already said that in one of my earlier reply’s) and again out mate, only by this way I can followed you a bit mate but as I already say feel free and do what you think is the right things to do so w.o.w don’t take my words like a ho.. Bi.. mate ;)
Jan 12th, 2009, 5:20 pm
Jan 13th, 2009, 8:27 pm
Hi to all. I have a Mio Moov 300 with MioPocket 2.0 R37. Then I have copyed the Garmin Xt for WM but I couldn´t make it work. When I start the app it show the port splitter window for a second and then it close. I have tryed few coredll.dll with the compatibility check but no luck.
Anyone know how to make it work with the moov series??

Thanks!!!
Jan 13th, 2009, 8:27 pm
Jan 13th, 2009, 10:10 pm
doc_june wrote:very cool


Which cool one you mean? The one with a needle in his foot or the movie itself??? I like that needle in his foot :D

BrGd
Jan 13th, 2009, 10:10 pm
Jan 14th, 2009, 5:55 am
I created a \sdmmc\garmin\poi folder and put into it the custom poi files downloaded from Garmin web site. However, when I choose Tools/Manage My Data/Map Sets/Custom POI Sets I was returned with the message "None Found".

How can custom poi be enabled?
Jan 14th, 2009, 5:55 am
Jan 14th, 2009, 7:43 am
Nha-Krul wrote:Hi to all. I have a Mio Moov 300 with MioPocket 2.0 R37. Then I have copyed the Garmin Xt for WM but I couldn´t make it work. When I start the app it show the port splitter window for a second and then it close. I have tryed few coredll.dll with the compatibility check but no luck.
Anyone know how to make it work with the moov series??

Thanks!!!


Are you sure that you have WM on your Moov, not WinCE5.0?
Jan 14th, 2009, 7:43 am

Mio C520, MioMap v3.3 Jan'08, Simple Unlock for MioC520, Jerry's skin - 2009.03.15 - Override - 2008.09.14
Garmin Mobile XT, Map Lietuvos TOPO 1.083NT
TomTom 7.910, Map Wester_and_Eastern_Europe_840_2306
iGO v8.3.4
Nokia N8
GMXT 5.00.60, Map LT TOPO 1.11
Ovi Maps 3.07
Jan 14th, 2009, 11:55 am
admuerte wrote:Are you sure that you have WM on your Moov, not WinCE5.0?


You are right, this is WinCE5.0.
Where can I find the correct dlls for WinCE5 ARM Processor to make Mobile Xt to work?
When I unlocked my moov, in the windows folder(ROM) there is a coredll.dll but the executability check couldn´t load it when I tryed with garmin.exe
Thanks for your help.
Jan 14th, 2009, 11:55 am
Jan 14th, 2009, 2:02 pm
Nha-Krul wrote:
admuerte wrote:Are you sure that you have WM on your Moov, not WinCE5.0?


You are right, this is WinCE5.0.
Where can I find the correct dlls for WinCE5 ARM Processor to make Mobile Xt to work?
When I unlocked my moov, in the windows folder(ROM) there is a coredll.dll but the executability check couldn´t load it when I tryed with garmin.exe
Thanks for your help.

On post #45 there is Mio 720 .mscr file,change it with your own and then try again launching with garmin.exe.All needed .dlls are on the #1 post of this topic.
Jan 14th, 2009, 2:02 pm

Mio C520, MioMap v3.3 Jan'08, Simple Unlock for MioC520, Jerry's skin - 2009.03.15 - Override - 2008.09.14
Garmin Mobile XT, Map Lietuvos TOPO 1.083NT
TomTom 7.910, Map Wester_and_Eastern_Europe_840_2306
iGO v8.3.4
Nokia N8
GMXT 5.00.60, Map LT TOPO 1.11
Ovi Maps 3.07
Jan 14th, 2009, 5:20 pm
admuerte wrote:On post #45 there is Mio 720 .mscr file,change it with your own and then try again launching with garmin.exe.All needed .dlls are on the #1 post of this topic.


I have changing the garmin.mscr file but nothing happen, the same problem, I see the port splitter window for a sec and the the window get closed.
The compatibility check couldn´t load coredll.dll for garmin.exe, but I´m having the same problems with all the files .exe from the miopocket package.
I have installed mobile xt on a Mio c230 without a problem, I used the same files but I can´t make it work.
I really do not know what to do.

Thanks for the help
Jan 14th, 2009, 5:20 pm
Jan 14th, 2009, 7:01 pm
Nha-Krul wrote:
admuerte wrote:On post #45 there is Mio 720 .mscr file,change it with your own and then try again launching with garmin.exe.All needed .dlls are on the #1 post of this topic.


I have changing the garmin.mscr file but nothing happen, the same problem, I see the port splitter window for a sec and the the window get closed.
The compatibility check couldn´t load coredll.dll for garmin.exe, but I´m having the same problems with all the files .exe from the miopocket package.
I have installed mobile xt on a Mio c230 without a problem, I used the same files but I can´t make it work.
I really do not know what to do.

Thanks for the help


The R37 has some bugs.tru the new R38 at first.
Jan 14th, 2009, 7:01 pm

Mio C520, MioMap v3.3 Jan'08, Simple Unlock for MioC520, Jerry's skin - 2009.03.15 - Override - 2008.09.14
Garmin Mobile XT, Map Lietuvos TOPO 1.083NT
TomTom 7.910, Map Wester_and_Eastern_Europe_840_2306
iGO v8.3.4
Nokia N8
GMXT 5.00.60, Map LT TOPO 1.11
Ovi Maps 3.07
Jan 14th, 2009, 8:23 pm
admuerte wrote:The R37 has some bugs.tru the new R38 at first.


Ok admuerte. I´m downloading MioPocket R38. I´ll try it and let you know what happend.
Thanks
Jan 14th, 2009, 8:23 pm