Go Back   xda-developers > Raphael > Raphael software

Reply
 
Thread Tools Search this Thread Display Modes
  #21  
Old 23rd November 2008, 05:27 AM
NuShrike's Avatar
NuShrike NuShrike is offline
Senior Member
 
Join Date: Sep 2007
Posts: 863
Default

Quote:
Originally Posted by Vladimyr View Post
But i had default backlight level set on 4! Thus, when ambient illumination was dropping under level 3, auto-backligh was turned off and backlight was increased to 4

Not i set default level to 2 and all is working well!
I'm glad you found the issue!

You have a good point actually. Backlight shouldn't go above the level where it was turned off at. I'll put that in the next build.
Reply With Quote
Sponsored Links

  #22  
Old 23rd November 2008, 10:12 PM
noellenchris's Avatar
noellenchris noellenchris is online now
Senior Member
 
Join Date: May 2007
Location: Marlton, NJ
Posts: 825
Default

the program works great....

however on soft reset, the service is not started...if i reinstall ten it starts again...verified w/task manager & viewing details of the service.exe file....

how can i make the service start after reset?
__________________
AT&T Fuze (Rafael) s/n HT844
ROM: WM 6.5 Da_G's Kitchen Vers. ?Another One?!
Software: FartApp & other useless stuff
Radio: Ralph 1.14.x.x for now and Ril
Cingular(Refurb) 8525 (Hermes 100)
Cingular 8125 Wizard...gone now

Download QuickMark! http://www.quickmark.com.tw/En/basic/download.asp
These phone's are addicting! The more tweaks/apps etc. I read about the more I have to cram into my HTC! Can my HTC overdose???
Reply With Quote

  #23  
Old 24th November 2008, 10:40 AM
NuShrike's Avatar
NuShrike NuShrike is offline
Senior Member
 
Join Date: Sep 2007
Posts: 863
Default 1.0.1.1 boot fix

Quote:
Originally Posted by noellenchris View Post
however on soft reset, the service is not started...if i reinstall ten it starts again...verified w/task manager & viewing details of the service.exe file....
Thanks for the bug report! Looks like the service is failing a certificate security check during boot.

Quick workaround posted to use a bootloader exe in the startup folder to flip the service on since this path doesn't have a cert/trust problem. Tested and works for me.
Reply With Quote

  #24  
Old 24th November 2008, 03:41 PM
lotion lotion is offline
Senior Member
 
Join Date: Jun 2006
Location: Boston, MA
Posts: 129
Default

Quote:
Originally Posted by NuShrike View Post
Quick workaround posted to use a bootloader exe in the startup folder to flip the service on since this path doesn't have a cert/trust problem. Tested and works for me.
This also works for me. A quick google search claims the service needs to be signed in order to start with the OS.
Reply With Quote

  #25  
Old 24th November 2008, 04:37 PM
noellenchris's Avatar
noellenchris noellenchris is online now
Senior Member
 
Join Date: May 2007
Location: Marlton, NJ
Posts: 825
Default

Quote:
Originally Posted by lotion View Post
This also works for me. A quick google search claims the service needs to be signed in order to start with the OS.
works now for me...thanks a ton, I like to read stuff on my phone before I go to bed, now it's not so bright!
__________________
AT&T Fuze (Rafael) s/n HT844
ROM: WM 6.5 Da_G's Kitchen Vers. ?Another One?!
Software: FartApp & other useless stuff
Radio: Ralph 1.14.x.x for now and Ril
Cingular(Refurb) 8525 (Hermes 100)
Cingular 8125 Wizard...gone now

Download QuickMark! http://www.quickmark.com.tw/En/basic/download.asp
These phone's are addicting! The more tweaks/apps etc. I read about the more I have to cram into my HTC! Can my HTC overdose???
Reply With Quote

  #26  
Old 24th November 2008, 05:08 PM
DeepThought's Avatar
DeepThought DeepThought is offline
Senior Member
 
Join Date: Jul 2006
Location: Austria, Vienna
Posts: 748
Default

Seems to work for me now too! Thank you NuShrike!
__________________

----------------------------------------------------------------------------------------------------
History: Wallaby > Himalaya > Blue Angel > Universal > Hermes > Palm Treo 750 > Kaiser > Raphael
My Apps: hTorch v3.2 | using camera LED as flashlight --> Last Updated: 2008-11-20
Reply With Quote

  #27  
Old 24th November 2008, 07:04 PM
DeepThought's Avatar
DeepThought DeepThought is offline
Senior Member
 
Join Date: Jul 2006
Location: Austria, Vienna
Posts: 748
Default

One minor "problem" tough. When I turn on my device it starts at light level 1 and it takes about 5 seconds before it's adjusting to the environment and turning the backlight to a higher value. Is it possible to shorten this time or to set the backlight to high on turning on?
__________________

----------------------------------------------------------------------------------------------------
History: Wallaby > Himalaya > Blue Angel > Universal > Hermes > Palm Treo 750 > Kaiser > Raphael
My Apps: hTorch v3.2 | using camera LED as flashlight --> Last Updated: 2008-11-20
Reply With Quote

  #28  
Old 24th November 2008, 08:10 PM
NuShrike's Avatar
NuShrike NuShrike is offline
Senior Member
 
Join Date: Sep 2007
Posts: 863
Default

Quote:
Originally Posted by DeepThought View Post
One minor "problem" tough. When I turn on my device it starts at light level 1 and it takes about 5 seconds before it's adjusting to the environment and turning the backlight to a higher value. Is it possible to shorten this time or to set the backlight to high on turning on?
Hey, I'm glad it's working for everybody now too.

Yes, the response time is a bit slow in order to keep it from flipping bright and dark rapidly due to the high inaccuracy of the sensor at low levels and the hysteresis being pretty simple.

It's supposed to immediately turn back to auto if the auto-system wants backlight 4 because of the environment.

I can add a tunable to make the history tracking adjustable (it's at 4 points * 3 seconds now), but I rather read up on some fuzzy-logic and get this right.
Reply With Quote

  #29  
Old 3rd December 2008, 01:48 PM
NuShrike's Avatar
NuShrike NuShrike is offline
Senior Member
 
Join Date: Sep 2007
Posts: 863
Default 1.0.2.0

Advanced sensory-data filtering using a history-less first-order low-pass filter with a medium α implemented. Previously, it was an integer-based running-average that required a 3-4 point memory history.

The new algorithm requires < 1.0 floating-point resolution so a custom fixed-point math library with DSP-acceleration is now used plus the actual filter equation was recoded directly in assembly for speed, just for fun.

Functionality that detected large and fast swings in sensor-data temporarily dropped because the filter's medium α duplicates some of the sensitivity.

Also, direct backlight power-state tracking (idea borrowed from Lumos) naively implemented to just avoid sensor-data calculations and adjustments for that poll loop without any visible affect on power-draw. It could affect the ability to adjust to light-levels deterministically, but this is a .0 release so the filter-equation can still use some tweaking.
__________________
Support what I do and donate me a frankfurter.

Last edited by NuShrike; 7th December 2008 at 04:43 AM..
Reply With Quote

  #30  
Old 3rd December 2008, 09:58 PM
NuShrike's Avatar
NuShrike NuShrike is offline
Senior Member
 
Join Date: Sep 2007
Posts: 863
Default 1.0.2.1

Quote:
Originally Posted by DeepThought View Post
One minor "problem" tough. When I turn on my device it starts at light level 1 and it takes about 5 seconds before it's adjusting to the environment and turning the backlight to a higher value. Is it possible to shorten this time or to set the backlight to high on turning on?
New edge detection of power-state changes in the backlight. Meaning, this should address the delay you talked about.
__________________
Support what I do and donate me a frankfurter.
Reply With Quote

Reply

Tags
auto-backlight, backlight

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:24 PM.


Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.