Esato

Forum > Sony Ericsson / Sony > Software, Firmware and Drivers > Modded Camera Driver for k800i/k810i

Previous  123 ... 102103104 ... 229230231  Next
Author Modded Camera Driver for k800i/k810i
genus
K800 Black
Joined: Apr 13, 2007
Posts: 385
From: Malaysia
PM
Posted: 2007-11-09 13:38
Reply with quoteEdit/Delete This PostPrint this post

On 2007-11-09 11:00:31, number1 wrote:
it's impossible to make more green boxes, but it is possible to modify the autofocus

[ This Message was edited by: number1 on 2007-11-09 10:26 ]


Ya, it may be possible to mod it. But i dont know how to mod this.

wat does the com_event(43,20) // fixed focus???

[ This Message was edited by: genus on 2007-11-09 12:49 ]
genus
K800 Black
Joined: Apr 13, 2007
Posts: 385
From: Malaysia
PM
Posted: 2007-11-09 13:43
Reply with quoteEdit/Delete This PostPrint this post
Then wat does this mean in the driver?

#SET_REG(32,05) // Use multiple AF windows, full range
gprsman
K810 Blue
Joined: Aug 28, 2006
Posts: 269
PM
Posted: 2007-11-09 14:19
Reply with quoteEdit/Delete This PostPrint this post
I do not find the line where to modify this you say to me where please?


we just need to find the k800i's shutter speed command

and replace

#COMMAND(04,$w0)
#COM_EVENT(04,00);

with the correct values then it should work
in the k850 shutter speed is #SET_REG(64,

so try
#SET_REG(64,$w0)
#SET_REG(64,00):


number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2007-11-09 14:19
Reply with quoteEdit/Delete This PostPrint this post
Focus mode, property 9 tells which part of the Focus operation, property 10, to use i think not 100% sure.
#SET_REG(32,05) // Use multiple AF windows, full range

i'm not sure what that is cause k800i can't use mulitiple Af windows, the full range thing means ful range scanning of the AF system

this is a interesting value in the AF

#COM_EVENT(43,00); // Go to infinity

it can be modified e.g 43,20

this says #COM_EVENT(42,01) whether it's autofocus or straight to infinity

the AF also contains manual focus which isn't used

2 e7 // e7 = MF event
// If we are not using manual focus, then this event should just be ignored
$p0 0a
$c0 01
$s0 03 // in progress
$cl
$c1 00
$s0 04 $go 37 0 // MF succes, turn off AF-LED
$cl
$s0 05 $go 37 0 // MF failed, turn off AF-LED
$cx
$cx
$cl
$s0 03 // in progress
$cx
$cx
$s1 00 // Set reg1 to zero
$s2 00 // Set reg2 to zero
$s3 00 // Set reg3 to zero
$"FOCUSOPERATION_%0_%1_%2_%3";

SEKseries
K810 Blue
Joined: Sep 06, 2007
Posts: 46
From: Malaysia
PM
Posted: 2007-11-09 15:46
Reply with quoteEdit/Delete This PostPrint this post

On 2007-11-09 14:19:19, number1 wrote:
Focus mode, property 9 tells which part of the Focus operation, property 10, to use i think not 100% sure.
#SET_REG(32,05) // Use multiple AF windows, full range

i'm not sure what that is cause k800i can't use mulitiple Af windows, the full range thing means ful range scanning of the AF system

this is a interesting value in the AF

#COM_EVENT(43,00); // Go to infinity

it can be modified e.g 43,20

this says #COM_EVENT(42,01) whether it's autofocus or straight to infinity

the AF also contains manual focus which isn't used

2 e7 // e7 = MF event
// If we are not using manual focus, then this event should just be ignored
$p0 0a
$c0 01
$s0 03 // in progress
$cl
$c1 00
$s0 04 $go 37 0 // MF succes, turn off AF-LED
$cl
$s0 05 $go 37 0 // MF failed, turn off AF-LED
$cx
$cx
$cl
$s0 03 // in progress
$cx
$cx
$s1 00 // Set reg1 to zero
$s2 00 // Set reg2 to zero
$s3 00 // Set reg3 to zero
$"FOCUSOPERATION_%0_%1_%2_%3";




So any idea to use the MF???
number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2007-11-09 15:52
Reply with quoteEdit/Delete This PostPrint this post
#COM_EVENT(42,01)<<#COM_EVENT(42,00)<<< no focus
#COM_EVENT(42,02)<<< maybe manuel focus but how would it be controled joystick zoom buttons i don't know
number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2007-11-09 16:34
Reply with quoteEdit/Delete This PostPrint this post
i've improved the focusing, i couldn't do matrix focusing but i made it focus the whole picture instead of one part u can also take macro pics in normal mode without using the macro mode i need to test it a bit more
Raiderski
C901 Black
Joined: Jul 03, 2006
Posts: > 500
From: Poland, Hell, Mountains
PM, WWW
Posted: 2007-11-09 18:22
Reply with quoteEdit/Delete This PostPrint this post
sometimes it's worth to look at treasures of K750 modding scene

#COM_EVENT(42,..)
// 0 = stop AF scan and hold position
// 1 = start AF scan
// 2 = stop AF and go to infinity

focus control (can be used as manual focus) is right here:

#COM_EVENT(43,..)
// 00 = infinity
// ..
// 19
// 20 = min. distance

all above values are hex of course

genus
with #SET_REG(32,..) you should be able to select range of autofocus work, well-known:
// 00 = normal range (without macro)
// 01 = full range (normal + macro)
// 02 =
// 03 =

both uknown, probably one of them is macro range only and the second is maybe fast version of full range scan

_________________
W800 CID36 R1BD001
www.tinyurl.com/2c3quo (gallery)
www.tinyurl.com/ysc2wm (driver + config tool)

[ This Message was edited by: Raiderski on 2007-11-09 17:28 ]
number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2007-11-09 19:06
Reply with quoteEdit/Delete This PostPrint this post

On 2007-11-09 18:22:59, Raiderski wrote:
sometimes it's worth to look at treasures of K750 modding scene

#COM_EVENT(42,..)
// 0 = stop AF scan and hold position
// 1 = start AF scan
// 2 = stop AF and go to infinity

focus control (can be used as manual focus) is right here:

#COM_EVENT(43,..)
// 00 = infinity
// ..
// 19
// 20 = min. distance

all above values are hex of course

genus
with #SET_REG(32,..) you should be able to select range of autofocus work, well-known:
// 00 = normal range (without macro)
// 01 = full range (normal + macro)
// 02 =
// 03 =

both uknown, probably one of them is macro range only and the second is maybe fast version of full range scan

_________________
W800 CID36 R1BD001
http://www.tinyurl.com/2c3quo (gallery)
http://www.tinyurl.com/ysc2wm (driver + config tool)

[ This Message was edited by: Raiderski on 2007-11-09 17:28 ]


thanks the k800i autofocus is quite advance compaired to other phones even the k850i, to complete the chart

#COM_EVENT(42,..)
// 0 = stop AF scan and hold position
// 1 = start AF scan
// 2 = stop AF and go to infinity

focus control (can be used as manual focus) is right here:

#COM_EVENT(43,..)
// 00 = infinity
// ..
// 19
// 20 = min. distance of 5cm

all above values are hex of course


with #SET_REG(32,..) you should be able to select range of autofocus work, well-known:
// 00 = normal range (without macro)
// 01 = full range (normal + macro)
// 04 = not sure Portrait mode focus i think
// 05 = full range macro (document)
genus
K800 Black
Joined: Apr 13, 2007
Posts: 385
From: Malaysia
PM
Posted: 2007-11-10 06:10
Reply with quoteEdit/Delete This PostPrint this post
so, which one better???
#SET_REG(32,..)

got
00 //0x32 = AF_SCAN_MODE => 1 Normal
01 //0x32 = AF_SCAN_MODE => 1 Full range
04 //Use multiple AF windows, normal
05 // Use multiple AF windows, full range


[ This Message was edited by: genus on 2007-11-10 05:11 ]
gprsman
K810 Blue
Joined: Aug 28, 2006
Posts: 269
PM
Posted: 2007-11-10 09:13
Reply with quoteEdit/Delete This PostPrint this post
Good work modders

As you can see I am learning at your own posts and comparing the various camdrivers am not an expert but I want to learn.

You can put the exact values and string with a complete line so I can understand all of the latest discoveries so to test the driver on my phone? What is EM? Would be good to eliminate all noise effect ; - ) Thanks to all

@number1 Thanks to you obviously

Your camdriver is excellent but has turned too many colors, as the red is too strong orange and red seems, in my opinion should lower the colors a little but .

B.R.
opexblue
Xperia X8 White
Joined: Jan 18, 2006
Posts: 226
From: Manado, North Celebes, INA.
PM
Posted: 2007-11-10 12:34
Reply with quoteEdit/Delete This PostPrint this post
This "Use multiple AF windows" could be for video, since the cam have to take multiple frame to record movies, IMO.
But I could be wrong.., I haven't test it yet...
NOKIA 8210> Samsung R220> Samsung N620> K700i> W700i> K800i (latest firmware R8BA024 Modding:Menu, Acoustic, camdriver)> K510i> C510i> Xperia X8> Samsung Galaxy W I8150> Samsung Galaxy Note 3 SM-N900S
genus
K800 Black
Joined: Apr 13, 2007
Posts: 385
From: Malaysia
PM
Posted: 2007-11-10 13:27
Reply with quoteEdit/Delete This PostPrint this post
yup, u may right.

Since k800i just have two metering mode only, i try it, but seem dont hv any effect.
number1
P1
Joined: Sep 12, 2007
Posts: > 500
From: UK,kent,Sittingbourne
PM
Posted: 2007-11-10 16:02
Reply with quoteEdit/Delete This PostPrint this post
no the different focus settings are for different scenes at the moment i'm using the doc mode AF on normal mode it's working great cause it using the full power of the AF system it can focus on close and long range objects very well
devya
K850 Green
Joined: Nov 11, 2003
Posts: 14
From: Indonesia
PM, WWW
Posted: 2007-11-10 18:31
Reply with quoteEdit/Delete This PostPrint this post
somehow after i reset back to the original software.
My night shot is better then when i'm using the mod software...

Access the forum with a mobile phone via esato.mobi
Previous  123 ... 102103104 ... 229230231  Next
Goto page:
Lock this Topic Move this Topic Delete this Topic