User Agent Settings - Tilt, TyTN II, MDA Vario III General

Hi All,
It's a long story but I've messed up some registry settings on my TyTn 2 (Vodafone V1615).
Would be most appreciated if someone could post default registry values for TyTn 2 (or V1615), for the following registry settings:
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent]
Version = ????
Platform = ????
Desc = ????
Default = ????
UA-Language =????
Compatible = ????
I'm tempted to use the "Same As Pocket PC" template that's in the registry for the above, but I'm curious to see if the Tytn 2 defaults are the same as the Pocket PC template.
Could also do with settings for:
[HKEY_LOCAL_MACHINE\Security\Internet Explorer\User Agent]
CustomBase = ????
Custom = ????
KaiserTweak will fix those, but also interested to see what the defaults are (especially for V1615)
Thanks for any info, it's VERY much appreciated, thanks.
Cheers,
Andy.

Related

Mortscript: How to set backlight?

Hi!
How can I set the backlight brightness on my Kaiser using mortscript?
I tried the SetBacklight(10, 10) command and also the commands
RegWriteDword ("HKCU", "ControlPanel\Backlight", "Brightness", 10)
RegWriteDword ("HKCU", "ControlPanel\Backlight", "ACBrightness", 10)
If I check in ControlPanel, only the slider that is not in use is changed.
So if I am on Battery power, only the slider for AC power is changed and vice versa.
I need to set the backlight to full (10) and half (5) when my bt headset connects.
Thanks a lot!!
This is the script:
RunCheck = 0
Application = "\Windows\AudioManager.exe"
WindowName = "Audio Manager"
While (1)
HandsFreeState = RegRead("HKLM", "System\State\Hardware", "Handsfree")
If (HandsFreeState = 1 && RunCheck = 0)
ToggleDisplay(1)
Run (Application)
#RegWriteDword ("HKCU", "ControlPanel\Backlight", "Brightness", 10)
#RegWriteDword ("HKCU", "ControlPanel\Backlight", "ACBrightness", 10)
SetBacklight(10,10)
SetVolume(255)
RunCheck = 1
EndIf
If (HandsFreeState = 0 && RunCheck = 1)
If (wndExists (WindowName))
Close(WindowName)
EndIf
#RegWriteDword ("HKCU", "ControlPanel\Backlight", "Brightness", 5)
#RegWriteDword ("HKCU", "ControlPanel\Backlight", "ACBrightness", 5)
SetBacklight(5,5)
SetVolume(150)
ToggleDisplay(0)
Vibrate(50)
RunCheck = 0
EndIf
Sleep (1000)
EndWhile
You cant do it using mortscript, on Kaiser and newer HTC devices.
HTC has changed the standard way to manage the backlight. It was done (in older devices) changing the registry and signaling a Windows Event. Now you must invoke some hidden functions of HTCUtil.dll. Unfortunatelly they are undocumented and Its not easy althought the name of the calls are clear. I am watching it right now to let CommMgrPro manage backlight on kaiser. If you unassamble backlight.exe you will see how Its done. But not easy....
Dani
When I got this problem on my PDA (Gsmart I) I found that there are another registry keys for backlight setting I found them on HKLM>SOFTWARE>GigabyeCM>LCDBacklight.
after changing this value with mortscript I run
SetBacklight(10,10)
command then my back light changed.
I wish this comment helps you.
Thanks!
Thanks for your replies!
Too bad mortscript can't manage backlight on the kaiser.
I use the kaiser in my car a lot and am looking for a way to control the backlight by time of day. So its dimmed at night and full brightness at daytime.
Best would be via a program and command line parameter so I can integrate it into my script,
which launches/exits the audio manager when my car bluetooth stereo/handsfree is connected.
Unfortunately I am no developer and don't know how to write a program like this.
There is an application called PhoneAlarm that will do exactly what you are trying to do. I use it for this purpose on my Cingular 8525 (HTC Tytn).
Sets MANY parameters on the phone by profile and/or time of day. There are lots of skins to minimize or maximize the screen footprint...
Hope that helps.
LightningDammitt said:
There is an application called PhoneAlarm that will do exactly what you are trying to do. I use it for this purpose on my Cingular 8525 (HTC Tytn).
Sets MANY parameters on the phone by profile and/or time of day. There are lots of skins to minimize or maximize the screen footprint...
Hope that helps.
Click to expand...
Click to collapse
Yes, with Tynt. CommMgrPro and many other programs does it too. The problem is HTC Kaiser (Tilt). HTC uses a new system. Classic ways used by many program doesnt work in kaiser
LightningDammitt said:
There is an application called PhoneAlarm that will do exactly what you are trying to do. I use it for this purpose on my Cingular 8525 (HTC Tytn).
Sets MANY parameters on the phone by profile and/or time of day. There are lots of skins to minimize or maximize the screen footprint...
Hope that helps.
Click to expand...
Click to collapse
Thank you for pointing out PhoneAlarm. I have been using PhoneAlarm for a couple of years now and like it very much. But I try to avoid it by doing what I need with Mortscript, because PhoneAlarm really slows down my Kaiser and has some issues with adjusting volume and sometimes switches power of phone when it should switch wifi.
After I spent some time disassembling backlight.exe, I found some usefull information here:
jianwu.spaces.live.com/blog/cns!C80015801668BB53!233.entry?ccr=9532#comment
It saved me a lot of time, as the program I was writing started working fine in minutes.
The problem with the backllight control seems to be common for newer HTC models - mine is Polaris with WM65X from pacrvalho.
make backlight control programm
Hello everybody!
Who can write a programm using the following
Code:
for .NET users (C#, can easily be translated on VB.NET), here are the calling functions :
[DllImport("HTCUtil.dll")]
private static extern int HTCUtilGetOnPowerBrightnessLevel(ref int pValue);
[DllImport("HTCUtil.dll")]
private static extern int HTCUtilGetOnBatteryBrightnessLevel(ref int pValue);
[DllImport("HTCUtil.dll")]
private static extern int HTCUtilSetOnPowerBrightnessLevel(ref int pValue);
[DllImport("HTCUtil.dll")]
private static extern int HTCUtilSetOnBatteryBrightnessLevel(ref int pValue);
[DllImport("HTCUtil.dll")]
private static extern int HTCUtilGetBacklightMinBrightness(ref int pValue);
[DllImport("HTCUtil.dll")]
private static extern int HTCUtilGetBacklightMaxBrightness(ref int pValue);
In program I need the next parameters:
-g (Set somewhere in registry the value of current brighteness level. For example:
HKCU\Software\MyBrightness\OnPower=80,
HKCU\Software\MyBrightness\OnBattery=20)
-p Value (Set OnPower brightness level and set in registry
HKCU\Software\MyBrightness\OnPower=Value)
-b Value (Set OnBattery brightness level and set in registry
HKCU\Software\MyBrightness\OnBattery =Value)
-pr (Set OnPower and OnBattery brightness level in previos state if it's possible)
Thank you beforehand.

TIP: How to make the Screen much more sensitive

You need to change the Following Registry Value:
HKEY_LOCAL_MACHINE\Drivers\TouchPanel
Value = PressureThreshold
Change from the default dword:00000027
or 34.
to dword:000000f0
or 240 in decimal.
This is drastic improvment.
Enjoy,
Nadavi.
Nadavi, my value is 34 not 000000027?
How come?
What exacly improves?
Do you meen if you press some thing that you have to press less hard before it accepts it as a press???
Seems to make things smoother !
is this only for the diamond??? i know that its a diamond thread but can this work on a Touch?? my pressure threshold is 21977
CorruptedSanity said:
Nadavi, my value is 34 not 000000027?
How come?
Click to expand...
Click to collapse
nevermind... my mistake
Nadavi, thanks for clearing that up.
Awesome.
Thanks heaps,
Helps overcome the slight lack of sensitivity when using the included screen protector.
Now I get less accidental 'clicks' into my contacts when just trying to flick thru them.
Cheers,
ccg
In my TD there is only a string key, not a dword key.
So I changed the string name to "PressureThreshold Original". If the comming change is not working then you can easely change it to the original situation.
So I made a new dword key:
HKEY_LOCAL_MACHINE\Drivers\TouchPanel\PressureThreshold\
to dword: 240 in decimal.
And it works. Indeed better performance.
But now my question is; wat is the string doing with value 60... Iny ideas?
Does increasing the number make it more sensitive or less sensitive? I'm having trouble pressing the OK in the corner of the screen - is my screen faulty or "too used" or can this fix it?
gracias ..

Create a Scrollwheel app?

can someone out there create a scrollwheel app that makes it work for all apps, not just in a couple of apps?
great idea...
nice idea
What do you want to do with scroll wheel?
If you want to scroll the active app you can use your finger.
If you want to zoom in or out that's quite application specific which is not an easy task to do. (Config scrollwheel app for each application differently, maybe.)
Anyway the second one should be a good feature to use.
see & add reg HKLM/Software/HTC/SmartTouch/
you can use scrollwheel to any apps like jog.
Could you maybe give a more precise howto?
Yeah help us out here, I would like to know it too!? This would be great! Step by step for the noobies please!?
tkhs said:
see & add reg HKLM/Software/HTC/SmartTouch/
you can use scrollwheel to any apps like jog.
Click to expand...
Click to collapse
The registry there reads:
Code:
[HKEY_LOCAL_MACHINE\Software\HTC\SmartTouch]
"Version"="1.00.31096"
"Threshold"=dword:00000008
"FirstThreshold"=dword:00000008
What should be added? I must say I'm a bit skeptic about this...
for example of RescoExplorer
Create key and value, as below
HKLM/Software/HTC/SmartTouch/RescoExplorer
(String Value) ClassName = RESCO_EXPLORER_CLASS
(DWORD Value) Mode = 4
(DWORD Value) WheelCount = 2
reset
you may use scrollwheel at RescoExplorer like jog.
if use other apps, you must know app's class.
RescoPhotoViwer's class = RESCO_PICVIEW_CLASS
InternetExplorer's class = IExplore
File Explorer 's class = FEXPLORE
CorePlayer's class = wCorePlayer
etc...
Dword Value "WheelCount"
1 = Movement of one every 36 degrees
5 = Movement of one every 180 degrees
10 = Movement of one every 360 degrees
Probably, you cannot delete created keys.
To delete it, stop SmartTouch Service.
HKLM/Services/SmartTouch
but...It doesn't seem to be so convenient...
tkhs said:
for example of RescoExplorer
Create key and value, as below
HKLM/Software/HTC/SmartTouch/RescoExplorer
(String Value) ClassName = RESCO_EXPLORER_CLASS
(DWORD Value) Mode = 4
(DWORD Value) WheelCount = 2
reset
you may use scrollwheel at RescoExplorer like jog.
if use other apps, you must know app's class.
RescoPhotoViwer's class = RESCO_PICVIEW_CLASS
InternetExplorer's class = IExplore
File Explorer 's class = FEXPLORE
CorePlayer's class = wCorePlayer
etc...
Dword Value "WheelCount"
1 = Movement of one every 36 degrees
5 = Movement of one every 180 degrees
10 = Movement of one every 360 degrees
Probably, you cannot delete created keys.
To delete it, stop SmartTouch Service.
HKLM/Services/SmartTouch
but...It doesn't seem to be so convenient...
Click to expand...
Click to collapse
someone try this and tell us if this works
Yep, it works. I just tried the exemple he wrote. But it's a lot of work if you have to do all of your applications this way!?
could someone write a cab to activate overall scrolling like the cruise?
yes pls! the wheel is useless!
tkhs said:
for example of RescoExplorer
Create key and value, as below
HKLM/Software/HTC/SmartTouch/RescoExplorer
(String Value) ClassName = RESCO_EXPLORER_CLASS
(DWORD Value) Mode = 4
(DWORD Value) WheelCount = 2
reset
you may use scrollwheel at RescoExplorer like jog.
if use other apps, you must know app's class.
RescoPhotoViwer's class = RESCO_PICVIEW_CLASS
InternetExplorer's class = IExplore
File Explorer 's class = FEXPLORE
CorePlayer's class = wCorePlayer
etc...
Dword Value "WheelCount"
1 = Movement of one every 36 degrees
5 = Movement of one every 180 degrees
10 = Movement of one every 360 degrees
Probably, you cannot delete created keys.
To delete it, stop SmartTouch Service.
HKLM/Services/SmartTouch
but...It doesn't seem to be so convenient...
Click to expand...
Click to collapse
just tried on Resco Explorer and works
thanks
crino said:
just tried on Resco Explorer and works
thanks
Click to expand...
Click to collapse
PIE also work!
Resco Photo Viewer is NOT working
What is the class name for estmertec jbed/operamini?
regards and thank you!!
How can I know the applications classes names?
Would be possible enable it for TF3D?
Thanks
tkhs said:
for example of RescoExplorer
Create key and value, as below
HKLM/Software/HTC/SmartTouch/RescoExplorer
(String Value) ClassName = RESCO_EXPLORER_CLASS
(DWORD Value) Mode = 4
(DWORD Value) WheelCount = 2
Click to expand...
Click to collapse
This screams for a small config app to be written so we can make different settings for all our apps. SK team??
also for the call histry & contects list...

problem with diamond tweak number two- boost performance / cachesize

reffering to the tweak list for the touch diamond;-
2. Boost TFL3D Performance --> HKLM\System\Storagemanager\Fatfs and change key Cachesize from 16384 to 32768
Ive been to Fatfs with PHM regedit and the value data in "cachesize" is displaying "0", shouldn't it be "16384" am I doing something wrong ?
Rom - 1.37.405.1.wwe, 12/6/08, protocol - 52.26a.25.09h
Will this tweak work with this rom?
Perhaps i should be using Advanced Config ?
couldn't find anything helpful in previous threads
any help is cool.
p.s., tried altering the "screen-off" setting, not much luck with that either

Can i lock backlight settings when using igo8

i was wondering if it is possible to lock the backlight settings on full level and i mean without using the auto settings, i am using igo8 and every time i exit it adjusts the backlight to lowest levels and 10sec timout on battery power and i have to manualy re set.
You can try adding the following to your sys.txt:
[power]
powermgm_state=1
backlight_day=100
backlight_night=50
Click to expand...
Click to collapse
I'm not 100% convinced it works properly all the time, but it seems to be an improvement.
Mr Anderson said:
You can try adding the following to your sys.txt:
I'm not 100% convinced it works properly all the time, but it seems to be an improvement.
Click to expand...
Click to collapse
Does not works.
Anyone a idea, i have the same problem.
In czech version of iGo is settings-device-power management-turn backlight on
as i said in another thread, this what i found about igo backlight:
-backlight control withing igo depends on windows settings auto backlight on or off.
-when igo exits it sets windows backlight to minimum & turn on "dim backlight if device is not used for: 10 sec" (actually its 5 sec).
-if i add in sys.txt:
[power]
backlight_sync_with_os=1
when igo exits it does not set backlight to minimum but still it sets dim for 10(5) sec.
its annoying to goto windows settings turn off dim after every igo use but i guess there is no solution for this now...
bnm7bnm said:
as i said in another thread, this what i found about igo backlight:
-backlight control withing igo depends on windows settings auto backlight on or off.
-when igo exits it sets windows backlight to minimum & turn on "dim backlight if device is not used for: 10 sec" (actually its 5 sec).
-if i add in sys.txt:
[power]
backlight_sync_with_os=1
when igo exits it does not set backlight to minimum but still it sets dim for 10(5) sec.
its annoying to goto windows settings turn off dim after every igo use but i guess there is no solution for this now...
Click to expand...
Click to collapse
Thanks for the [power] setting in sys.txt, it works for turning the screen to minimum! that is, it leaves the Windows setting for brightness untouched!
But as you discribed it turns the time for dim back to 10 sec, but not when closing, it does allready when starting iGO8 as i just found out!
Where halfway now, maybe some knows a solution for the other problem: setting time back to 10 sec.
Found complete working solution !
Hello,
It took me some time to figure it all out but I have found the solution that realy works!!! ​
Add following in your sys.txt or use mine:
[power]
powermgm_state=0
backlight_night="100"
backlight_day="100"
[registry]
oninit1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout: DWORD:0"
oninit2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout: DWORD:0"
oninit3="HKCU\ControlPanel\BackLight\BatteryTimeout: DWORD:0"
oninit4="HKCU\ControlPanel\BackLight\ACTimeout: DWORD:0"
oninit5="HKCU\ControlPanel\BackLight\ACBrightNess: DWORD:0"
oninit6="HKCU\ControlPanel\BackLight\BrightNess: DWORD:0"
onexitreset1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout: DWORD"
onexitreset2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout: DWORD"
onexitreset3="HKCU\ControlPanel\BackLight\BatteryTimeout: DWORD"
onexitreset4="HKCU\ControlPanel\BackLight\ACTimeout: DWORD"
onexitreset5="HKCU\ControlPanel\BackLight\ACBrightNess: DWORD"
onexitreset6="HKCU\ControlPanel\BackLight\BrightNess: DWORD"
Click to expand...
Click to collapse
Remove the spaces between : and D because iff I leave it there they will be a smiley:
There are some spaces in Power, Timeout, Word, BrightNess and Control be sure to remove then in your notepad.
Beware of the following: if you have [project] name="igo8_pda" I don't know if it works because all in sys.txt will be ignored.
Maybe if you put my text above within the quotes after [project] name="igo8_pda" it will work, just try.
What I did is removed: [project] name="igo8_pda" from my sys.txt and copyed the content of igo8_pda.ini to my sys.txt for making everythin easyer to edit, even my notepad on my phone.
Furhtermore I removed: [device] type="Touch Diamond2 T5353" and copyed all that content into my sys.txt for the same reason.
From Touch Diamond2 T5353.ini I removed all [power] settings:
backlight_max = 9
backlight_min = 1
backlight_reverse = 0
backlight_key_bright_BA1 ="Brightness"
backlight_key_bright_AC1 ="ACBrightness"
backlight_key_bright_BA2 ="BacklightLuminanceLevel"
backlight_key_bright_AC2 ="ACBacklightLuminanceLevel"
backlight_key_timeout_BA = "BatteryTimeout"
backlight_key_timeout_AC = "ACTimeout"
backlight_key_ontap_BA = "BacklightOnTap"
backlight_key_ontap_AC = "ACBacklightOnTap"
backlight_key_on_BA = "OnOff"
backlight_key_on_AC = "ExtOnOff"
backlight_methods = 1, 5, 6, 7, 8, 10, 12, 18, 21, 23, 24, 25, 26, 27, 28, 33, 36, 37, 39, 40, 42, 46, 49, 50, 52, 53, 54
backlight_events = 1
backlight_slow_api = 1
Click to expand...
Click to collapse
and every sentence starting with ; because they will be ignored by iGO8:
;[interface]
;resolution_dir="800_480"
;vga=1
;[rawdisplay]
;class="landscape"
;highres=1
;screen_x=800
;screen_y=480
;[power]
;backlight_manage_values=1
;backlight_max = 10
;backlight_min = 0
;backlight_reverse = 0
;backlight_key_bright_BA1 ="Brightness"
;backlight_key_bright_AC1 ="ACBrightness"
;backlight_key_timeout_BA = "BatteryTimeout"
;backlight_key_timeout_AC = "ACTimeout"
;backlight_key_ontap_BA = "BacklightOnTap"
;backlight_key_ontap_AC = "ACBacklightOnTap"
;backlight_key_on_BA = "OnOff"
;backlight_key_on_AC = "ExtOnOff"
;backlight_methods = 1 , 25
;backlight_events = 1, 5, 7
;backlight_slow_api=1
Click to expand...
Click to collapse
Attached you will find my sys.txt aswel the standard igo8_pda.ini as txt file and Touch Diamond2 T5353.ini as txt file.
In my sys.txt change:
[folders]
app="Opslagkaart/iGO8"
Click to expand...
Click to collapse
to most likely:
[folders]
app="SD-Card/iGO8"
Click to expand...
Click to collapse
and remove:
[loading]
show_statustext=1
show_progressbar=1
progressbar_x=103
progressbar_y=371
Click to expand...
Click to collapse
Because you don't have my loading progresbar installed.
Be sure to put the sys.txt in the right folder.
I put in on my SD-Card in the folder iGO8 first but didn't work.
When you installed iGO8 instead of just copyed it onto you SD-Card you will most likely find you sys.txt on your device in Program Files\iGO8\
If you have sys.txt on both locations just overwrite them both to be on the sure side.
Have fun!!
Wow. Impressed. Thanks.
prdic said:
In czech version of iGo is settings-device-power management-turn backlight on
Click to expand...
Click to collapse
Simple and works a treat, thanks.
Neo_XDA said:
Simple and works a treat, thanks.
Click to expand...
Click to collapse
Nice to read that you are by far the only one without that problem
In all languages there are settings for power managment but for a unknown reason it does not work
Why do you think that so many people, among myself, spend so much time figuring out how to get rid of that problem
If it was realy that easy this topic wasn't necesary in the first place but it excist
sorry for the dumb question, but where can I find the Touch Diamond2 T5353.ini and igo8_pda.ini files to modify them?
Locations
profunzime said:
sorry for the dumb question, but where can I find the Touch Diamond2 T5353.ini and igo8_pda.ini files to modify them?
Click to expand...
Click to collapse
igo8_pda.ini (can also be igo8_pda.xxx) is located inside data.zip folder project_config.
Touch Diamond2 T5353.ini (if exists) can be found inside data.zip folder config\devices.
But you don't need to refer to either one the those files from your sys.txt if you write the content you need or want of those files in your sys.txt.
It is a lot easier to edit if you only use your sys.txt which doesn't refer to either igo8_pda.ini or Touch Diamond2 T5353.ini.
Working sys.txt for any 800x480 device in landscape with known backlight fix:
Code:
;sys.txt final with Backlight fix by Tom Lenferink, last edited 2009.08.22 22:00
[folders]
app="Opslagkaart/iGO8"
[rawdisplay]
driver="gdi"
class="landscape"
highres=0
screen_x=800
screen_y=480
autoconfig=1
;project igo8 pda:
[3d]
guidancearrow_first_size=1.1
guidancearrow_first_alpha=24
guidancearrow_second_size=0.8
guidancearrow_second_alpha=12
show_guidance_arrows=0
show_guidance_strip=1
guidancestrip_stretch=20
[3d_config]
roadsign_lines_per_screen=18
[config]
overspeedrewarnbelow=1
[debug]
enable_buildings=1
enable_roadshadow=1
enable_roadsign=1
enable_landmark_occlusion=1
getupdates=1
show_speed_limit=1
[device]
SDCard_dsk_num=7
[feature]
tmc_event_coloring=1
signpost_coloring=1
[gps]
port=4
baud=57600
[interface]
skin="ui_igo8"
newalignment=1
default_poi_icon="Contacts"
laneinfo_signpost_enabled=1
shutdown_time=0
show_exit=1
resolution_dir="800_480"
vga=1
maxzoom2d=3000000
defaultzoom3d=5000
mapfontscale=300
use_big_lang_flag=1
[map]
3d_max_zoomlevel=2000
3d_min_zoomlevel=40
3d_scale_carmodel=1
3dcarsizemin=5000
3dcarsizemax=8000
3dcarsizemul=10000
building_render_distance_far_front=6.0
building_render_distance_far_back=3.0
building_render_distance_medium_front=3.0
building_render_distance_medium_back=2.0
building_render_distance_near_front=2.0
building_render_distance_near_back=2.0
popup_info=0
tiltmaxcount=3
3d_buildings_distance=3
2dheadup=1
[modules]
IPOWER_DRIVER="PDA_POWER_DRIVER"
[msnd]
enabled=0
[oasis]
clock0_tz_index="29"
clock1_tz_index="12"
[power]
powermgm_state=0
backlight_night="100"
backlight_day="100"
[registry]
oninit1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout:DWORD:0"
oninit2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout:DWORD:0"
oninit3="HKCU\ControlPanel\BackLight\BatteryTimeout:DWORD:0"
oninit4="HKCU\ControlPanel\BackLight\ACTimeout:DWORD:0"
oninit5="HKCU\ControlPanel\BackLight\ACBrightNess:DWORD:0"
oninit6="HKCU\ControlPanel\BackLight\BrightNess:DWORD:0"
onexitreset1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout:DWORD"
onexitreset2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout:DWORD"
onexitreset3="HKCU\ControlPanel\BackLight\BatteryTimeout:DWORD"
onexitreset4="HKCU\ControlPanel\BackLight\ACTimeout:DWORD"
onexitreset5="HKCU\ControlPanel\BackLight\ACBrightNess:DWORD"
onexitreset6="HKCU\ControlPanel\BackLight\BrightNess:DWORD"
[route]
strap_waypoint_to_entry=1
zip_resolve_max_length=0
[smartzoom]
restore_smartzoom_on=1
enabled=1
enabled2d=1
;use2d is to use separate smartzoom for 2d and 3d. Once this is implemented in a UI it should be set to 1.
use2d=1
minzoom=60
maxzoom=250
auto_follow_on=1
autozoom_coord=200
autozoom_address=100
autozoom_cos=200
auto_follow_time=10
auto_smartzoom_time=8
zoom_after_find=1
default_visibility_altitude=4000
overview=0
overview_zoomlevel=10000
overview_distance=20000
minangle=8
maxangle=85
[sound]
queue_length=200
[speedcam]
enable_at_startup=1
disable="_SUI", "_GER", "_AUT"
[tmc]
auto_detour_calc=0
announce_total_route=1
[warning]
speedwarn_alt_builtup_based=1
overspeed_sound= "!alert4"
max_section_time=240
section_beep_sound= "!sectionbeepA"
approach_beep_sound="!sectionbeepB"
section_start_sound="!sectionstartA"
section_end_sound= "!sectionend"
Change "Opslagkaart" into whatever your SD-Card is called in File Explorer on your device:
[folders]
app="Opslagkaart/iGO8"
To change to portrait view change following:
[rawdisplay]
class="portrait"
screen_x=480
screen_y=800
[interface]
resolution_dir="480_800"
Change only rules mentioned above and leave all other rules unchanged!
You can also download my sys.txt for landscape by clicking ont the link.
I repair JUST file SYS.TXT and I have this text in it:
[project]
name="igo8_pda"
[folders]
app="%SDCARD%/iGO8"
[interface]
maxzoom2d=6000000
show_exit=1
[power]
powermgm_state=0
backlight_day="100"
backlight_night="50"
[registry]
oninit1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout: DWORD:0"
oninit2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout: DWORD:0"
oninit3="HKCU\ControlPanel\BackLight\BatteryTimeout: DWORD:0"
oninit4="HKCU\ControlPanel\BackLight\ACTimeout: DWORD:0"
oninit5="HKCU\ControlPanel\BackLight\ACBrightNess: DWORD:0"
oninit6="HKCU\ControlPanel\BackLight\BrightNess: DWORD:0"
onexitreset1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout: DWORD"
onexitreset2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout: DWORD"
onexitreset3="HKCU\ControlPanel\BackLight\BatteryTimeout: DWORD"
onexitreset4="HKCU\ControlPanel\BackLight\ACTimeout: DWORD"
onexitreset5="HKCU\ControlPanel\BackLight\ACBrightNess: DWORD"
onexitreset6="HKCU\ControlPanel\BackLight\BrightNess: DWORD"​
just it, nothing more and it seems to be go well.
Thanks Tom Lenferink.
Rakis said:
I repair JUST file SYS.TXT and I have this text in it:
Code:
[INDENT][project]
name="igo8_pda"
[folders]
app="%SDCARD%/iGO8"
[interface]
maxzoom2d=6000000
show_exit=1
[power]
powermgm_state=0
backlight_day="100"
backlight_night="50"
[registry]
oninit1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout:DWORD:0"
oninit2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout:DWORD:0"
oninit3="HKCU\ControlPanel\BackLight\BatteryTimeout:DWORD:0"
oninit4="HKCU\ControlPanel\BackLight\ACTimeout:DWORD:0"
oninit5="HKCU\ControlPanel\BackLight\ACBrightNess:DWORD:0"
oninit6="HKCU\ControlPanel\BackLight\BrightNess:DWORD:0"
onexitreset1="HKLM\System\CurrentControlSet\Control\Power\Timeouts\ACSuspendTimeout:DWORD"
onexitreset2="HKLM\System\CurrentControlSet\Control\Power\Timeouts\BattSuspendTimeout:DWORD"
onexitreset3="HKCU\ControlPanel\BackLight\BatteryTimeout:DWORD"
onexitreset4="HKCU\ControlPanel\BackLight\ACTimeout:DWORD"
onexitreset5="HKCU\ControlPanel\BackLight\ACBrightNess:DWORD"
onexitreset6="HKCU\ControlPanel\BackLight\BrightNess:DWORD"[/INDENT]
just it, nothing more and it seems to be go well.
Thanks Tom Lenferink.
Click to expand...
Click to collapse
You don't need much, maybe I can do with less but I never tried.
I allways say, don't try to fix something that isn't broken.
I will give your sys.txt a try.
Don't forget that there are 2 sys.txt, in the folder Program Files of your device memory and on your Storage Card in the iGO8 folder.
Only one of those is used.
Code:
PS, if you want to write something as is, I mean without some caracters being replaced for a smiley like :D wrap some CODE tags around it. ;-)
Tom Lenferink said:
Hello,
It took me some time to figure it all out but I have found the solution that realy works!!! ​
Add following in your sys.txt or use mine:
...
Click to expand...
Click to collapse
Thanks. ... First I think that i have some problem with my system backlight program (Lumos), then I found that problem is in IGO (I use skin Dimka), and this sys.txt change working well. For me was enough only update sys.txt
I have one more porblem,
After, made all changes in all files,
when i quit Igo, WM backlight both on battery and on power going bottom..
What can i do..
Going to give it a try...
Just what i needed!
Thanks heaps for the beautiful software.
Bless ye
richyrich552003 said:
i was wondering if it is possible to lock the backlight settings on full level and i mean without using the auto settings, i am using igo8 and every time i exit it adjusts the backlight to lowest levels and 10sec timout on battery power and i have to manualy re set.
Click to expand...
Click to collapse
Use of the market from KeepScreen
Sorry this is a google translate.
My iGo 8.5 and iGo 8.9 has menu-entries for energy-settings. Works perfect since 2 years.

Categories

Resources