| Versions |
 |
|
| Author |
Topic  |
|
amaaliki
17 Posts |
Posted - 06 déc. 2010 : 21:09:15
|
Hello again, I am actually extremely happy with the mio pocket mini, now I use the GPS as a pda and more, but of course after I fixed my mio moov m405 using the original DVD the mio tach support sent me, so everything is going just fine. Thank every one of you who helped me with this matter, wish you all more and more success. Happy holly days!! |
 |
|
|
deepsloat
2 Posts |
Posted - 06 déc. 2010 : 22:20:37
|
hey guys...i'm new here....ok..i been trying to get miopocket to run on my navigon 4350 max...i tried just about everything...even swipped the intern hdd,,,(after making a backup) ofcourse...but...nuthing goes....i put the backup back....everything runs fine...just no Miopocket ANY HELP WOULD BE GREATLY APPRECIATED...BEFORE I TEAR MY WIG FROM MY SKULL....
THNX |
Edited by - deepsloat on 06 déc. 2010 22:24:11 |
 |
|
|
Osprey
USA
2764 Posts |
Posted - 07 déc. 2010 : 04:59:00
|
happyrock, John Dough answered your first question (thanks, JD). To answer your second question... if you merely put the device into Standby, you will not have to re-install. Typically, a device can remain in Standby for up to a week before the battery drains completely. If you shut the device down completely, MioPocket will need to install itself again, but that takes only a minute or so.
GrRusel, I haven't forgotten. It's just that I want to verify that I've got a good, stable, relatively bug-free release before I migrate changes over to MioPocket Mini.
amaaliki, I'm glad to hear it and sorry that I didn't check this thread in time to help you, myself.
deepsloat, Have you tried the Navman-specific instructions under the SD installation instructions in the Readme? |
Mio C320 (US), R40 firmware, WinCE 5.0 Core, MioPocket 4.0 Release 68 Latest MioPocket: MioPocket 4.0 (Release 68) - Dec 6, 2010 & ReadMe |
 |
|
|
deepsloat
2 Posts |
Posted - 07 déc. 2010 : 10:14:40
|
Osprey... this is the only open source text visible on the flash drive
name...PMCFG.INI
[ProcessManager] ;Configuration file for rescue system control
;use logfile (0=dont log, 1=normal log, 2=log with size limit) Uselogging=0 ;Path to write Log file Logpath=\MN Settings\RESY.log ;Path to write Log file backup (if size restriction is active) Logpath2=\MN Settings\RESY_backup.log ;max size of the logfile in bytes Maxlogfilesize=1000
;Path to executable (of MN7) Navigatorexepath=.\NAVIGON\navigon.exe
;what to do at Process exit/crash 0=nothing 1=restart 2=reboot ;(avoid restart because of problems with open filehandles!) Crashrecovery=2
;Path for route target file which ist written from MN7 Rescuedatapath=\MN Settings\NavigationRoute.resy
;Path to private status file of resy procmanager StatusFilePath=\MN Settings\ProcManStatus.resy
;How to check for new RESY file 1=length only , 2=no check - use countdowntimer Checkmode=1
;how many restarts with same RESY file Maxrestarts=3
;Show message box if exe could not be started ExeStartFailureMessagebox=1
;countdown timer settings (only used in countdown timer check algorithm) ;the route target file is deleted when the countdowntimer is zero ;start value of the countdowntimer - this is also the maximum value LeakyBucketStart=10 ;each crash and restart decreases this value from the countdowntimer LeakyBucketDecrease=5 ;!!but: the timer value is *increased* every minute by one during normal operation!
|
 |
|
|
Osprey
USA
2764 Posts |
Posted - 08 déc. 2010 : 09:00:53
|
deepsloat, The Readme says to then try the Moov/Spirit instructions. Have you tried creating a folder named Default and renaming the files to Auto.exe and Auto.mscr? If so or it doesn't work, you may need to replace that Navigon\navigon.exe file. |
Mio C320 (US), R40 firmware, WinCE 5.0 Core, MioPocket 4.0 Release 68 Latest MioPocket: MioPocket 4.0 (Release 68) - Dec 6, 2010 & ReadMe |
 |
|
|
Osprey
USA
2764 Posts |
Posted - 08 déc. 2010 : 09:20:07
|
Everyone, Here's a new release that brings MioPocket Mini that incorporates some of the changes made in R67 and R68 of the full MioPocket.
Download: MediaFire Mirror: MegaUpload |
Mio C320 (US), R40 firmware, WinCE 5.0 Core, MioPocket 4.0 Release 68 Latest MioPocket: MioPocket 4.0 (Release 68) - Dec 6, 2010 & ReadMe |
Edited by - Osprey on 08 déc. 2010 09:20:57 |
 |
|
|
GrRusel
29 Posts |
Posted - 10 déc. 2010 : 14:23:06
|
quote: Originally posted by Osprey
Everyone, Here's a new release that brings MioPocket Mini that incorporates some of the changes made in R67 and R68 of the full MioPocket.
Thank you very much! There are a few comments / suggestions: 1.In the file MioAutoRun we have lines:
#Copy toolhelp.dll to \Windows so that the ProcExists commands in this script will work
Copy(SystemFolder\"toolhelp.dll", "\Windows\toolhelp.dll")
#If CE6, replace all copies of toolhelp.dll with the CE6 version, since MortScript crashes with the pre-CE6 version
If(SystemVersion("major") = 6)
Copy(SystemFolder\"CE6\toolhelp.dll", ProgramsFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", ProgramsFolder\"MortScript\toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", ScriptsFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", SystemFolder\"toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", SystemFolder\"Extra\toolhelp.dll", TRUE)
Copy(SystemFolder\"CE6\toolhelp.dll", WindowsFolder\"Windows\toolhelp.dll", TRUE)
If(FileExists(SkinFolder\"SystemInformation\MyApps\toolhelp.dll"))
Copy(SystemFolder\"CE6\toolhelp.dll", SkinFolder\"SystemInformation\MyApps\toolhelp.dll", TRUE)
EndIf
Copy(SystemFolder\"CE6\toolhelp.dll", "\Windows\toolhelp.dll", TRUE)
EndIf Maybe will be better if delete the file toolhelp.dll everywhere and keep only in folders CE6 and CE5 and the code will be rewritten as follows:
#Copy toolhelp.dll to \Windows so that the ProcExists commands in this script will work
If(not FileExists("\Windows\toolhelp.dll"))
If(SystemVersion("major") = 6)
Copy(SystemFolder\"CE6\toolhelp.dll", "\Windows\toolhelp.dll")
Else
Copy(SystemFolder\"CE5\toolhelp.dll", "\Windows\toolhelp.dll")
EndIf
EndIf and replace in the file unlock the following lines:
If(CeVersion = 4)
Call("SafeXCopy", SystemFolder\"CE4\*.*", Windows, FALSE, FALSE)
Else
Call("SafeXCopy", SystemFolder\"CE5\*.*", Windows, FALSE, FALSE)
If(CeVersion = 6)
Call("SafeXCopy", SystemFolder\"CE6\*.*", Windows, FALSE, FALSE)
EndIf
EndIf to behold these
If(CeVersion = 4)
Call("SafeXCopy", SystemFolder\"CE4\*.*", Windows, FALSE, FALSE)
ElseIf(CeVersion = 6)
Call("SafeXCopy", SystemFolder\"CE6\*.*", Windows, FALSE, FALSE)
Else
Call("SafeXCopy", SystemFolder\"CE5\*.*", Windows, FALSE, FALSE)
EndIf AND these lines are generally unnecessary, because we have already copied all the files from "SystemFolder":
#Copy common DLLs to \Windows
Call("SafeXCopy", SystemFolder\"toolhelp.dll", "\Windows", FALSE, FALSE)
Call("SafeXCopy", SystemFolder\"aygshel*.dll", "\Windows", FALSE, FALSE) 2.Place in a folder "SystemFolder" the MFCCE300.DLL, because without it, on my device, the mortscript does not work well. 3. Why cab files dont have any icon?:
 4. When I try open txt file:
 |
Mio Moov V735TV & MioPocket MINI 4.0 Release 2 |
Edited by - GrRusel on 10 déc. 2010 20:03:33 |
 |
|
|
marserri
France
4 Posts |
Posted - 12 déc. 2010 : 00:14:09
|
Hello everybody,
I have a GPS Mappy Ulti 490 for a few days and this morning I installed, on the SD, the miopocket mini 4.0 succesfully.
Once I found out that everything was working well I tried to install the full miopocket 4.0 but I didn´t manage, not even manage to reinstall the mini version again.
Miopocket 4.0 is working but any of the programs that were installed are working because I did a hardrest before trying to install the full version (WindowsCE works).
I can use the WindowsCE on my device but I can´t access to its internal folders on the root of the internal flashdisc (i.e. windows, etc). Is this normal?
Does anybody know what can I do to install miopocket 4.0 again on my device, so that I can use all its applications?
Thank you ver much in advance. |
Mappy Ulti 490 WM 6.0 |
 |
|
|
agem58
Uruguay
11 Posts |
Posted - 27 déc. 2010 : 23:36:16
|
Hi: I think that MioPocket mini is just what I was looking for. I want to run on a Asus R600 GPS, do not see many of these gps in the forum. I want to run sd-free. But I have problems, the install seems normal until advised that to continue the installation I run the original navigation software. Following are 2 buttons [OK], I oppress, but I do not see anything happening. I take out the SD-card and continuing with the SD-free installation. Apparently the installation ends well. But when I press Settings MP, displays the error "Can not find MioPocketSettings.mscr 'MioPocketSettings' (or one of ITS components ..." Other components give similar errors Skin Change, Calculator, ... If I insert original MioPocket SD, all works. It is as if instead of pointing the GPS internal memory, is pointing to the SD memory. I have other little problems, I'll ask you later. Greetings and Happy New Year. |
Asus R600 - GMXT - MioPocket mini SD-free NÜVI 265 |
 |
|
|
mmthomas
13 Posts |
Posted - 21 janv. 2011 : 17:31:54
|
| How do I remove this mini version? There is no remove icon in settings, like the full version. |
 |
|
|
John Dough
Andorra
390 Posts |
Posted - 21 janv. 2011 : 18:29:37
|
quote: Originally posted by agem58
Hi: I think that MioPocket mini is just what I was looking for. I want to run on a Asus R600 GPS, do not see many of these gps in the forum. I want to run sd-free. But I have problems, the install seems normal until advised that to continue the installation I run the original navigation software. Following are 2 buttons [OK], I oppress, but I do not see anything happening. I take out the SD-card and continuing with the SD-free installation. Apparently the installation ends well. But when I press Settings MP, displays the error "Can not find MioPocketSettings.mscr 'MioPocketSettings' (or one of ITS components ..." Other components give similar errors Skin Change, Calculator, ... If I insert original MioPocket SD, all works. It is as if instead of pointing the GPS internal memory, is pointing to the SD memory. I have other little problems, I'll ask you later. Greetings and Happy New Year.
Delete and reinstall the mioautorun folder on your device |
Mio V505TV CE 6 16gb microsd card MIO 580 CE 5 MP4 R68 16gb sdhccard /MIO C710 4gb sd card MP4 R68 Igo83tts Miomap V3.3tts |
 |
|
|
John Dough
Andorra
390 Posts |
Posted - 21 janv. 2011 : 18:33:42
|
quote: Originally posted by mmthomas
How do I remove this mini version? There is no remove icon in settings, like the full version.
Depends where you loaded it if sdfree delete the mioautorun folder on the flash drive or sd card just remove the card. |
Mio V505TV CE 6 16gb microsd card MIO 580 CE 5 MP4 R68 16gb sdhccard /MIO C710 4gb sd card MP4 R68 Igo83tts Miomap V3.3tts |
 |
|
|
mmthomas
13 Posts |
Posted - 21 janv. 2011 : 20:32:36
|
| My install was from the SD card (not SDfree). There were changes made somewhere to the CE firmware. I want to backout the installation. There is a file in the backup folder labeled preinstallationbackup. How do I get that file to activate and remove the changes to the base firmware. |
 |
|
|
John Dough
Andorra
390 Posts |
Posted - 21 janv. 2011 : 20:58:55
|
| It should be a .reg file so just add to the registry. |
Mio V505TV CE 6 16gb microsd card MIO 580 CE 5 MP4 R68 16gb sdhccard /MIO C710 4gb sd card MP4 R68 Igo83tts Miomap V3.3tts |
 |
|
|
mmthomas
13 Posts |
Posted - 21 janv. 2011 : 21:09:55
|
| I am not familiar with the term "add it to the registry". I thought I would have to use it to replace the current registry? How do I add it to the registry. How does this relate to the "remove" option available in the full miopocket? |
 |
|
Topic  |
|
|
|
| This page was generated in 0,84 seconds. |
 |
|