Author |
Modded Camera Driver for k800i/k810i |
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
THX !
I know we shouldn't bother you with EM for K8xx but I realize you'r playing around with EM for 550 (OK, my daughter would thank you).
Maybe implemetation is easier there, I don't know, but ManualFocus,Color;Sharpening would be great if beeing EM'ed on K800...  |
|
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
because k550i shutter speed command is
#COM_EVENT(04,00), and the k800i's shutter speed command is still unknown |
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
I tried that:
//************************************************
// Exposure property 0 *****
//************************************************
// 3 => -2 EV, 9 => -(0) EV .... f => 2 EV
//---------------------------------------------------
seq_set_prop_0 =
$s5 %0
$-5 09
$p1 08 // put Effects-Property into Reg1
$c1 04 // Is Black-White Effect selected then
#COM_EVENT(55,$w5) // Set Contrast with Stick
#COM_EVENT(06,00) // Reset exposure
$cl
$c1 02 // Is Solarize Effect selected then
#COM_EVENT(58,$w5) // Set Colorgain with Stick
#COM_EVENT(06,00) // Reset exposure
$cl
$c1 01 // Is Negative Effect selected then
#COM_EVENT(56,$w5) // Set Sharpness with Stick
#COM_EVENT(06,00) // Reset exposure
$cl // IF other Effect or Normal do normal EV operation
#COM_EVENT(06,$w5)
$cx
$cx
$cx;
Only Color worked, contrast and sharpening I couldn't see effect.
I used 0 to +2EV.
Any Idea whats wrong ?
I did't change anything else after setting Effect and the wanted EV Value, just set Effect back to normal and EV back to 0 because the #COM_EVENT(06,00) didn't really reset Exposure..... |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
you wouldn't notice anything on the viewfinder by increasing the sharpness increasing the contrast you should have noticed the exposure also, try
#COM_EVENT(43,$w5) thats focus you should notice a change when increaing and decreasing the EV. |
jomateixa Joined: Dec 09, 2007 Posts: > 500 From: PM |
On 2008-01-15 23:50:57, pietropizzi wrote:
I tried that:
//************************************************
// Exposure property 0 *****
//************************************************
// 3 => -2 EV, 9 => -(0) EV .... f => 2 EV
//---------------------------------------------------
seq_set_prop_0 =
$s5 %0
$-5 09
$p1 08 // put Effects-Property into Reg1
$c1 04 // Is Black-White Effect selected then
#COM_EVENT(55,$w5) // Set Contrast with Stick
#COM_EVENT(06,00) // Reset exposure
$cl
$c1 02 // Is Solarize Effect selected then
#COM_EVENT(58,$w5) // Set Colorgain with Stick
#COM_EVENT(06,00) // Reset exposure
$cl
$c1 01 // Is Negative Effect selected then
#COM_EVENT(56,$w5) // Set Sharpness with Stick
#COM_EVENT(06,00) // Reset exposure
$cl // IF other Effect or Normal do normal EV operation
#COM_EVENT(06,$w5)
$cx
$cx
$cx;
Only Color worked, contrast and sharpening I couldn't see effect.
I used 0 to +2EV.
Any Idea whats wrong ?
I did't change anything else after setting Effect and the wanted EV Value, just set Effect back to normal and EV back to 0 because the #COM_EVENT(06,00) didn't really reset Exposure.....
Try removing #COM_EVENT(06,00) from that places (for contrast, colour & sharpness should work anyway) |
stat5bot Joined: Jan 16, 2008 Posts: 67 PM |
Hi. really sorry to ask.
but, how do you change the cam driver of k800i? i recently bought this phone and i dont know if it requires the software to update the camera driver. Please walk me through on how to change it. appreciate it a lot. Thanks |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
read the first post at the bottom
http://www.esato.com/board/viewtopic.php?topic=161159 |
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
@ number1 and jomateixa
THX for your advises !
@ number1
I didnt't notice any changes in VF so I took real shots with different settings and analyzed on Laptop !
And there I also dis't see any changes in contrasc or sharpness, only colorgain was changed as expected.
Thanx for FOCUS command, I'll try that and report on it !
@ jomateixa
In my first try I didn't have the #COM_EVENT(06,00) commands in the driver but I saw that exposure was also changed according to the stick +/- change when only 55,56 or 58 should be changed.
So I thought of putting a reset afterwards would act like setting the stick to 0 again and exposure would not be affected !
But it was and still is.....
So I have to go back to Effect --> Normal and set the stick back to 0 manually |
stat5bot Joined: Jan 16, 2008 Posts: 67 PM |
Hi. ive been looking for SE Tools 1.0.8 and i cant find it. any links where i could download the software? Thanks |
tranced Joined: Jan 19, 2006 Posts: > 500 From: Santo Domingo, wonDeRland PM |
On 2008-01-16 17:07:41, stat5bot wrote:
Hi. ive been looking for SE Tools 1.0.8 and i cant find it. any links where i could download the software?  Thanks
http://www.4shared.com/accoun[....]v108.html?sId=AbS3IOgOkJ22URzV
|
stat5bot Joined: Jan 16, 2008 Posts: 67 PM |
wow. thanks a lot tranced. ill try this and hopefully nothing bad would happen. hahaha.. |
tranced Joined: Jan 19, 2006 Posts: > 500 From: Santo Domingo, wonDeRland PM |
dont you trust in yourself?
|
jomateixa Joined: Dec 09, 2007 Posts: > 500 From: PM |
In my first try I didn't have the #COM_EVENT(06,00) commands in the driver but I saw that exposure was also changed according to the stick +/- change when only 55,56 or 58 should be changed.
I putted a only command #COM_EVENT(06,00) just before #COM_EVENT(06,$w5) and it didn't happen to me. Colorgain and sharpness worked (I think but have to test more). Contrast worked too but if you revert back the EV to 0.0 it dissappears (contrast and exposure are almost the same).
So I thought of putting a reset afterwards would act like setting the stick to 0 again and exposure would not be affected !
But it was and still is.....
So I have to go back to Effect --> Normal and set the stick back to 0 manually
#COM_EVENT(06,00) won't work for that, you should put $-5 09 instead (at the end, before #COM_EVENT(06,$w5)). The EV will be +0.0 but the stick will remain at 2.0 or wherever you setted, so you won't be able to increase/decrease it in full range anymore.
[ This Message was edited by: jomateixa on 2008-01-16 16:37 ] |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
doesn't increaing the contrast also increase the exposure, it does it by default |
stat5bot Joined: Jan 16, 2008 Posts: 67 PM |
On 2008-01-16 17:16:46, tranced wrote:
dont you trust in yourself?
well, i do. but im kinda new with this modding and flashing. and ive been backreading.. and i couldnt understand the codes.. hahaha! |
|