Author |
Modded Camera Driver for k800i/k810i |
stat5bot Joined: Jan 16, 2008 Posts: 67 PM |
Anybody knows how to know the current camera driver installed in k800i? |
|
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
OK, this is the code I'm satisfied for today
//************************************************
// Exposure property 0 *****
//************************************************
// 3 => -2 EV, 9 => -(0) EV .... f => 2 EV
//---------------------------------------------------
seq_set_prop_0 =
$s5 %0
$s4 %0
$-4 03 // Extend range for settings >=0
$-5 09 // Normal EV range
$p1 08 // put Effects-Property into Reg1
$c1 04 // Is Black-White Effect selected then
#SET_REG(32,01) // Extend to full range
#COM_EVENT(43,$w4) // Set FOCUS with Stick (thx number1)
#COM_EVENT(61,20) // 8x Zoom
$cl
$c1 02 // Is Solarize Effect selected then
#COM_EVENT(58,$w4) // Set Colorgain with Stick
$cl
$c1 01 // Is Negative Effect selected then
#COM_EVENT(56,$w4) // Set Sharpness with Stick
$cl // IF other Effect or Normal do normal EV operation
#COM_EVENT(06,$w5)
$cx
$cx
$cx;
Forget about sharpness and Colorgain.
This does:
On Setting Effect Black White:
Viewfinder zooms in 8x
The Focus Range is extendet to Macro (Full) no mather what the Focus is really set to ! Set to Infinity will help deactivate AF !
Use stick to set Focus
Set Effect back to normal
Set EV Value (get Stick to 0 EV for normal operation)
Use it, play with it, port it on Zoom keys, do whatever you like ! 
[ This Message was edited by: pietropizzi on 2008-01-16 22:46 ] |
jomateixa Joined: Dec 09, 2007 Posts: > 500 From: PM |
On 2008-01-16 23:45:53, pietropizzi wrote:
OK, this is the code I'm satisfied for today
//************************************************
// Exposure property 0 *****
//************************************************
// 3 => -2 EV, 9 => -(0) EV .... f => 2 EV
//---------------------------------------------------
seq_set_prop_0 =
$s5 %0
$s4 %0
$-4 03 // Extend range for settings >=0
$-5 09 // Normal EV range
$p1 08 // put Effects-Property into Reg1
$c1 04 // Is Black-White Effect selected then
#SET_REG(32,01) // Extend to full range
#COM_EVENT(43,$w4) // Set FOCUS with Stick (thx number1)
#COM_EVENT(61,20) // 8x Zoom
$cl
$c1 02 // Is Solarize Effect selected then
#COM_EVENT(58,$w4) // Set Colorgain with Stick
$cl
$c1 01 // Is Negative Effect selected then
#COM_EVENT(56,$w4) // Set Sharpness with Stick
$cl // IF other Effect or Normal do normal EV operation
#COM_EVENT(06,$w5)
$cx
$cx
$cx;
Forget about sharpness and Colorgain.
This does:
On Setting Effect Black White:
Viewfinder zooms in 8x
The Focus Range is extendet to Macro (Full) no mather what the Focus is really set to ! Set to Infinity will help deactivate AF !
Use stick to set Focus
Set Effect back to normal
Set EV Value (get Stick to 0 EV for normal operation)
Use it, play with it, port it on Zoom keys, do whatever you like !
[ This Message was edited by: pietropizzi on 2008-01-16 22:46 ]
Well done pizzi
And what about the contrast? We can put it in Sepia effect |
alvink83 Joined: Nov 27, 2007 Posts: 20 PM |
What does "Set sharpness with stick"? |
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
It sets sharpness with stick
I THINK it does because colorgain also works so why shouldn't sharpness work. But I I was so happy playing around with FOCUS that I forget everything around....
I'd like to know HOW number1 found the Focus command, I mean that it accepts other parameters than (43,00), just by try and error ?
What would be the max then, because for now max=F because of EV+ doesn't go any further.....
@jomateixa
Of course you could put other properties (Contrast...) on Effects, but from what I learned from you and number1 its better to keep contrast low (except DOC Mode, where it is raised) so I don't see any need....
I'd really like to see some kind of noise reduction by possibility to fast WB ON/OFF and ISO FORCING.
I mean look an http://www.esato.com/board/viewtopic.php?topic=135737&start=8160 where Kriomag shows the difference between AutoWB OFF / ON on K750.
[ This Message was edited by: pietropizzi on 2008-01-17 06:31 ] |
reggiele Joined: Oct 21, 2007 Posts: 85 From: HN PRC PM |
Thanks for the good message Peter!! |
brazzuka's Joined: Nov 14, 2007 Posts: > 500 From: South World-Antartida-Sweden PM, WWW
|
Guys
Whats chip model you are using is based? and that frequency of the clock are u working on? k800
Good job
|
Raiderski Joined: Jul 03, 2006 Posts: > 500 From: Poland, Hell, Mountains PM, WWW
|
pietropizzi
i remember, sorry for no response but without the phone i couldn't test this. today i will start to mod K800 driver and if zoom keys will be ready to use i will post recipe
BTW.
number1 found command 43 in k750/w800/w810 drivers we know about cmd43 from long time. modded 2mp drivers are the best source of knowledge and solutions
|
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
yea i know, command 43 is under the autofocus property in the k800i, can you reccomend me a value for #COM_EVENT(57,00) the colour hue, |
Raiderski Joined: Jul 03, 2006 Posts: > 500 From: Poland, Hell, Mountains PM, WWW
|
HUE doesn't work as we expected. we have access to only small part of full colors slide area. probably HUE is cooperating with other (unknown) register. you can try biggest possible values for 8bit:
0x7F - red to orange
0x80 - red to light violet
BTW.
for 2mp phones, cmd 43 can have this values:
00 = infinity
...
32 (0x20) = closest focus
|
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
colour hue works i used #COM_EVENT(57,80), and everythings violet coloured lol, have do you use the colour hue to the best advantage to get better colour. |
jomateixa Joined: Dec 09, 2007 Posts: > 500 From: PM |
On 2008-01-17 07:26:58, pietropizzi wrote:
It sets sharpness with stick
I THINK it does because colorgain also works so why shouldn't sharpness work. But I I was so happy playing around with FOCUS that I forget everything around....
I'd like to know HOW number1 found the Focus command, I mean that it accepts other parameters than (43,00), just by try and error ?
What would be the max then, because for now max=F because of EV+ doesn't go any further.....
@jomateixa
Of course you could put other properties (Contrast...) on Effects, but from what I learned from you and number1 its better to keep contrast low (except DOC Mode, where it is raised) so I don't see any need....
I'd really like to see some kind of noise reduction by possibility to fast WB ON/OFF and ISO FORCING.
I mean look an http://www.esato.com/board/viewtopic.php?topic=135737&start=8160 where Kriomag shows the difference between AutoWB OFF / ON on K750.
[ This Message was edited by: pietropizzi on 2008-01-17 06:31 ]
I think disabling WB is not a good idea, but the possibility to switch off it when we want yea it's perfect, I will test some mods I'm thinking, but I don't have time grrrr
Cheers |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
no whitebalance is better than the k800i's awful whitebalance 90% of the time it got the colours and everthing wrong & some pictures had a cloundy bluish effect, |
Raiderski Joined: Jul 03, 2006 Posts: > 500 From: Poland, Hell, Mountains PM, WWW
|
i used 00 because in my opinion HUE is good only as optional function (in supermode when user has manual control and want to change HUE value) but of course my opinion don't have to be the the best
auto WB can be locked - #COM_EVENT(11,01) (or in number1 way: 80 instead of 01)
|
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
so #COM_EVENT(11,01) is locked &
#COM_EVENT(11,80) is off, i prefer it off so it doesn't spoil my pictures |
|