Author |
Super camera driver for k750/w800/w810 |
Sasimi Joined: Jan 12, 2007 Posts: 16 PM |
I'm not sure if this has been asked already, but do these patches work on a W880i?
PS: If it's not too much of a bother, could someone tell me/link me to a tutorial on using these patches? |
|
lengstreet Joined: Apr 18, 2007 Posts: 92 From: Thailand PM |
On 2008-01-20 17:48:24, (zalman) wrote:
LengStreet your v5.22 Final is great driver for my brother fon (k750i)
You driver is running on W810i ?
Yes, Work on w810i cid49 too
Thank zalman
http://www.flickr.com/photos/lengstreet |
leetiran Joined: Aug 15, 2007 Posts: 134 From: China PM |
On 2008-01-20 14:06:07, number1 wrote:
i'm trying to limit it for the k550i driver, because for some reason it can't produce a shutter speed above 1 second, so how do i limit it to 1 second
Maybe you can try my EM method. set slow shutter=1s, set iso=100, and let camera test the exposure time by itself.
use the below as EM codes:
#COM_EVENT(03,02) #COM_EVENT(51,04) $u01
if u dont mind a little noises, u can just use
#COM_EVENT(03,02)
have a try
[ This Message was edited by: leetiran on 2008-01-21 07:42 ] |
leetiran Joined: Aug 15, 2007 Posts: 134 From: China PM |
Enhanced Standard driver for k750/w800/w810
http://www.mediafire.com/?ct4wttnl2tt
Picture Fine: Enhanced Mode(EM): iso=100
Picture Normal: Sub-Enhanced Mode(SEM): less noises than stock driver.
Macro on: full range focus, spot light metering
most codes are from Raider6.7
EM codes use my method:
EM: set slow shutter=2s, set iso=100
SEM:set slow shutter=1s
[ This Message was edited by: leetiran on 2008-01-21 08:22 ] |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
@leetiran how do you limit EM so it can't produce a shutter speed above 1 second |
leetiran Joined: Aug 15, 2007 Posts: 134 From: China PM |
On 2008-01-21 11:41:54, number1 wrote:
@leetiran how do you limit EM so it can't produce a shutter speed above 1 second
my EM method is different from the present EM method.
The present method estimated the shutter speed to make iso=100 and apply it.
My method is setting slow shutter and let the camera test exopsure time by itself.
slow shutter=max shutter speed
#COM_EVENT(03,02) means slow shutter=1s. so the max shutter speed=1s.
[ This Message was edited by: leetiran on 2008-01-21 12:10 ] |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
isn't #COMMAND(3,02) also viewfinder fps???? |
leetiran Joined: Aug 15, 2007 Posts: 134 From: China PM |
On 2008-01-21 12:55:38, number1 wrote:
isn't #COMMAND(3,02) also viewfinder fps????
yes, it has sth to do with that. so u just apply it in seq_ss_take
[ This Message was edited by: leetiran on 2008-01-21 12:12 ] |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
ok i understand so if you set it under ss_take it won't effect the viewfinder fps |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
is this em code ok, it's for the k550i driver and runs in auto mode all the time.
EM_SET=$p1 10
$c1 00
$p1 0e
$c1 00
#READ_REG(23,$r2 1 1)
$m0 1 $/0 28
$c0 00
#COMMAND(03,02) $m0 1 $/0 03 <<< have i set the limit correct???
$c0 00
$cl
#FILTER(00,03)
$s0 40 $p2 07 $c2 01 $p2 0d $c2 01 $s0 3d $cx $cx $-0 r1
#COMMAND(04,$w0)
$cx $cx $cx $cx;
|
leetiran Joined: Aug 15, 2007 Posts: 134 From: China PM |
try this:
EM_SET=$p1 10
$c1 00
#COMMAND(03,02)
$cx;
or
EM_SET=$p1 10
$c1 03 //night scene->EM
#READ_REG(23,$r2 1 1)
$m0 1 $/0 32
$c0 00
#COMMAND(03,01) #COM_EVENT(51,04) $u01
$cx
$cl //other scene->SEM
#COMMAND(03,02)
$cx;
|
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
is this ok
EM_SET=$p1 10
$c1 00
$p1 0e
$c1 00
#READ_REG(23,$r2 1 1)
$m0 1 $/0 28
$c0 00
#COMMAND(03,02) #COM_EVENT(51,04) $u01
$c0 00
$cl
#FILTER(00,03)
$cx $cx; |
Raiderski Joined: Jul 03, 2006 Posts: > 500 From: Poland, Hell, Mountains PM, WWW
|
On 2008-01-21 13:06:38, leetiran wrote:
On 2008-01-21 12:55:38, number1 wrote:
isn't #COMMAND(3,02) also viewfinder fps????
yes, it has sth to do with that. so u just apply it in seq_ss_take
not exactly:
seq_ss_take = your cmd03 ->
seq_ss_verify ->
seq_ss_stop = refresh seq_set_prop_7 (old cmd03 is restored)
slow shutter applied in seq_ss_take will affect viewfinder too but you can see this because old slow shutter is restored in updated night mode property - after snapshot and before viewfinder realtime visibility
|
leetiran Joined: Aug 15, 2007 Posts: 134 From: China PM |
On 2008-01-21 15:37:18, Raiderski wrote:
On 2008-01-21 13:06:38, leetiran wrote:
On 2008-01-21 12:55:38, number1 wrote:
isn't #COMMAND(3,02) also viewfinder fps????
yes, it has sth to do with that. so u just apply it in seq_ss_take
not exactly:
seq_ss_take = your cmd03 ->
seq_ss_verify ->
seq_ss_stop = refresh seq_set_prop_7 (old cmd03 is restored)
slow shutter applied in seq_ss_take will affect viewfinder too but you can see this because old slow shutter is restored in updated night mode property - after snapshot and before viewfinder realtime visibility
yes! |
leetiran Joined: Aug 15, 2007 Posts: 134 From: China PM |
EM_SET=$p1 10
$c1 03 #READ_REG(23,$r2 1 1)
$m0 1 $/0 28
$c0 00
#COMMAND(03,02) #COM_EVENT(51,04) $u01 #FILTER(00,03)
$cx $cx;
it is simple to put EM in scene 3, otherwise need
some other codes in other place
[ This Message was edited by: leetiran on 2008-01-21 16:41 ] |
|