Sony Ericsson / Sony : Software, Firmware and Drivers : Modded Camera Driver for k800i/k810i
>
New Topic
>
Reply<
Esato Forum Index
>
Sony Ericsson / Sony >
Software, Firmware and Drivers
> Modded Camera Driver for k800i/k810i
Bookmark topic
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 ]
--
Posted: 2007-11-09 13:38:30
Edit :
Quote
Then wat does this mean in the driver?
#SET_REG(32,05) // Use multiple AF windows, full range
--
Posted: 2007-11-09 13:43:27
Edit :
Quote
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):
--
Posted: 2007-11-09 14:19:01
Edit :
Quote
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";
--
Posted: 2007-11-09 14:19:19
Edit :
Quote
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???
--
Posted: 2007-11-09 15:46:23
Edit :
Quote
#COM_EVENT(42,01)#COM_EVENT(42,00)#COM_EVENT(42,02)<<< maybe manuel focus but how would it be controled joystick zoom buttons i don't know
--
Posted: 2007-11-09 15:52:01
Edit :
Quote
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
--
Posted: 2007-11-09 16:34:28
Edit :
Quote
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 ]
--
Posted: 2007-11-09 18:22:59
Edit :
Quote
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)
--
Posted: 2007-11-09 19:06:20
Edit :
Quote
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 ]
--
Posted: 2007-11-10 06:10:14
Edit :
Quote
New Topic
Reply