Author |
Modded Camera Driver for k800i/k810i |
LaurensB Joined: Nov 28, 2007 Posts: 35 PM |
Hacked Number12.95 with manual focus and the other WIP code :
http://files.myopera.com/LaurensB/files/camdriver0.dat
Credit's go to the authors, not me.
An example with manual focus :
[img]
http://files.myopera.com/LaurensB/files/DSC00597.jpg
[/img]
Yes, yes it's not the best picture so go out and make some better We do now have the tools!
|
|
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
auto WB can be locked - #COM_EVENT(11,01) (or in number1 way: 80 instead of 01)
Oh I got it wrong then I thought:
#COM_EVENT(11,01) is "OK, calculate and lock the WB to what is in VF right now" and
#COM_EVENT(11,80) is AutoWB is not in use, just do nothing
This is my new code, cant upload, forgot bluetooth stick
Yea, patching got easier !:)
seq_set_prop_0 =
$s5 %0
$-5 09 // Normal EV range
$s4 %0
// Now we do some calc tryout (thx Raiderski)
$-4 03 // Extend range for settings >=0
$*4 08 // Extend 12 EV-Stick steps to 32 Focus steps
$/4 03
$p1 08 // put Effects-Property into Reg1
$c1 04 // Is Black-White Effect selected then
#COM_EVENT(61,14) // 3.2x Zoom for closer view
#SET_REG(32,01) // Extend Focus to full range
#COM_EVENT(43,$w4) // Set FOCUS with Stick (thx number1) |
killerPK Joined: Oct 11, 2007 Posts: 252 From: Lahore, Pakistan PM |
Anyone tried changing the 13Mhz(32C8) clockspeed to 15(3A98) or 20Mhz(4E20) ? |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
over clocking the MHZ will allow for higher fps bugless video recording but will also heat up the phone, the phone will get very hot. |
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
On 2008-01-17 14:29:51, LaurensB wrote:
Hacked Number12.95 with manual focus and the other WIP code :
Credit's go to the authors, not me.
An example with manual focus :
Yes, yes it's not the best picture so go out and make some better  We do now have the tools!
Good to use it ! But iI took Standard driver because there arent any colorgain or sharpness setiings hidden.
But if you mod already modded drivers, take care if the 55,56,58 parameters aren't used somewhere else again, so your manaul stick setting will be overwritten then ! Do a search for thhem first!
I think MF could be used for mybe take spider on water surface, how would you AF that  |
LaurensB Joined: Nov 28, 2007 Posts: 35 PM |
On 2008-01-17 14:35:18, killerPK wrote:
Anyone tried changing the 13Mhz(32C8) clockspeed to 15(3A98) or 20Mhz(4E20) ?
Just tried that Didn't work.
On 2008-01-17 14:41:46, pietropizzi wrote:
On 2008-01-17 14:29:51, LaurensB wrote:
Hacked Number12.95 with manual focus and the other WIP code :
Credit's go to the authors, not me.
An example with manual focus :
Yes, yes it's not the best picture so go out and make some better  We do now have the tools!
Good to use it ! But iI took Standard driver because there arent any colorgain or sharpness setiings hidden.
But if you mod already modded drivers, take care if the 55,56,58 parameters aren't used somewhere else again, so your manaul stick setting will be overwritten then ! Do a search for thhem first!
I think MF could be used for mybe take spider on water surface, how would you AF that
It's not ment to be used as a serious improvement, just a quick way for those that love to try out new features! I'm sure number1 and the other great camera coders are following your developments with an eager want to use it! And they can implent it way better than I can
Just tested your new code btw! Works great, the 32x zoom works as far as I can tell (no way to say for sure if it's really 32x ) and I can get a really nice out of focus picture so I think the settings are saved
[ This Message was edited by: LaurensB on 2008-01-17 13:52 ]
[ This Message was edited by: LaurensB on 2008-01-17 13:56 ] |
killerPK Joined: Oct 11, 2007 Posts: 252 From: Lahore, Pakistan PM |
On 2008-01-17 14:41:30, number1 wrote:
over clocking the MHZ will allow for higher fps bugless video recording but will also heat up the phone, the phone will get very hot.
So how much do you think we can increase the clockspeed so that it doesnt get too hot? 15 or 16Mhz fine? |
Raiderski Joined: Jul 03, 2006 Posts: > 500 From: Poland, Hell, Mountains PM, WWW
|
#COM_EVENT(11,00) is realtime WB update (that's why it's called auto)
#COM_EVENT(11,01)
#COM_EVENT(11,80) both are WB lock (can be used as permanent auto WB off)
ok, i know that auto WB isn't ideal but locking it permanently? i don't know... for now i will not touch WB settings
|
jomateixa Joined: Dec 09, 2007 Posts: > 500 From: PM |
On 2008-01-17 14:59:53, Raiderski wrote:
#COM_EVENT(11,00) is realtime WB update (that's why it's called auto)
#COM_EVENT(11,01)
#COM_EVENT(11,80) both are WB lock (can be used as permanent auto WB off)
ok, i know that auto WB isn't ideal but locking it permanently? i don't know... for now i will not touch WB settings
I agree, for me the only good solution is the ability to put it off/on on the fly |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
#COM_EVENT(11,80) is OFF not lock or anything, i got it from the t650 camdriver, loads of things are turned off, this is from the t650i driver
sharpness off #WR_REG(21, 80), whitebalance off #WR_REG(14, 80),
see
//**************************************************
// Digital Sharpening, property 21
//
// 0 => Off <<<< OFF 1 => +1 2 =>+2 3 => +3
// 4 => +4 5 => +5 6 => Auto
//**************************************************
seq_set_prop_15_0 = #WR_REG(21, 80); <<<<< OFF
seq_set_prop_15_1 = #WR_REG(21, 00);
seq_set_prop_15_2 = #WR_REG(21, 01);
seq_set_prop_15_3 = #WR_REG(21, 02);
seq_set_prop_15_4 = #WR_REG(21, 03);
seq_set_prop_15_5 = #WR_REG(21, 04);
seq_set_prop_15_6 = #WR_REG(21, 40);
|
Mike2 Joined: Feb 04, 2005 Posts: 322 From: Thessaloniki, Greece PM, WWW
|
I can't take a colour pic with this driver.
How did you take a colour picture?
Enabling B&W allows me to MF, but the resulting pics are always B&W  |
pietropizzi Joined: Nov 16, 2007 Posts: 130 From: Vienna PM |
Works great, the 32x zoom works as far as I can tell (no way to say for sure if it's really 32x  ) and I can get a really nice out of focus picture so I think the settings are saved
Take care its in fact 3,2x (look at the code)
EDIT: Enabling B&W allows me to MF, but the resulting pics are always B&W
Of course ! The BW Effect itself isn't disabled (easy to do that if you want). You have to switch back to Normal (no effect) after setting !
[ This Message was edited by: pietropizzi on 2008-01-17 14:51 ]
[ This Message was edited by: pietropizzi on 2008-01-17 14:52 ] |
Raiderski Joined: Jul 03, 2006 Posts: > 500 From: Poland, Hell, Mountains PM, WWW
|
T650 sensor is Foxconn. most of registers and values are different thus they cannot be applied in Sony sensor with the hope that they'll work for sure exactly as in Foxconn. this is very simple thing for me and there is no reason to discuss about this. if you permanently set 01/80 no matter of value result will be the same - auto WB doesn't work after camera open. so "lock" or "off" naming conventions are unimportant in this case
|
Mike2 Joined: Feb 04, 2005 Posts: 322 From: Thessaloniki, Greece PM, WWW
|
On 2008-01-17 15:22:25, pietropizzi wrote:
Take care its in fact 3,2x (look at the code)
EDIT: Enabling B&W allows me to MF, but the resulting pics are always B&W
Of course ! The BW Effect itself isn't disabled (easy to do that if you want). You have to switch back to Normal (no effect) after setting !
Aha, thanks for the information
Would it be possible to disable the B&W effect only on document mode? |
Kriomag Joined: Dec 20, 2006 Posts: > 500 From: Poland PM, WWW
|
im just curious: what is the buffer limit in k800? in k750i its ~616kB |
|
Access the forum with a mobile phone via esato.mobi
|