Author |
Modded Camera Driver for k800i/k810i |
SEKseries Joined: Sep 06, 2007 Posts: 46 From: Malaysia PM |
On 2007-11-03 16:16:59, number1 wrote:
SET_REG(37,00); thats flash shutter speed u might see a effect if u use the flash lol
@genus
Did the flash fired in the picture u took???
@number1
If the answer is yes then that's my fault......
|
|
genus Joined: Apr 13, 2007 Posts: 385 From: Malaysia PM |
how about we try to change the different setting of number each by each?
how about this?
#SET_REG(38,47) // 23b4 AE_FLASHINFO_SHORT = ISO 400, 1/30 s (no use level)
#SET_REG(39,47) // 23b4 AE_FLASHINFO_LONG = ISO 400, 1/30 s (use level)
38 and 39 is wat? or we can also try 35 and 4a
[ This Message was edited by: genus on 2007-11-03 15:23 ] |
kuratinja Joined: Oct 22, 2007 Posts: 41 PM |
so....what drivers have real quality in photo and video recording ??
|
genus Joined: Apr 13, 2007 Posts: 385 From: Malaysia PM |
On 2007-11-03 16:19:59, SEKseries wrote:
On 2007-11-03 16:16:59, number1 wrote:
SET_REG(37,00); thats flash shutter speed u might see a effect if u use the flash lol
@genus
Did the flash fired in the picture u took???
@number1
If the answer is yes then that's my fault......
if i wan to try, i will direct go to the 37 line change it to 00 ===> auto |
SEKseries Joined: Sep 06, 2007 Posts: 46 From: Malaysia PM |
On 2007-11-03 16:21:46, genus wrote:
how about we try to change the different setting of number each by each?
how about this?
#SET_REG(38,47) // 23b4 AE_FLASHINFO_SHORT = ISO 400, 1/30 s (no use level)
#SET_REG(39,47) // 23b4 AE_FLASHINFO_LONG = ISO 400, 1/30 s (use level)
38 and 39 is wat? or we can also try 35 and 4a
[ This Message was edited by: genus on 2007-11-03 15:23 ]
If u hav time, please try it out, your effort will be appreciated.
|
genus Joined: Apr 13, 2007 Posts: 385 From: Malaysia PM |
yup, i tried change the 36 and 37 setting to 00, and the flash exposure time go to 1/5000....
number1 can you try the em mode change the for 38, 39 and 4a? |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
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):
|
genus Joined: Apr 13, 2007 Posts: 385 From: Malaysia PM |
On 2007-11-03 16:35:18, number1 wrote:
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):
i alrdy try so many...phone gonna break down alrdy...muz leave it hv a rest 1st. |
SEKseries Joined: Sep 06, 2007 Posts: 46 From: Malaysia PM |
On 2007-11-03 16:33:54, genus wrote:
yup, i tried change the 36 and 37 setting to 00, and the flash exposure time go to 1/5000....
number1 can you try the em mode change the for 38, 39 and 4a?
According to Raiderski
00 = auto, 01 = 6400, 02 = 5000, 03 = 3200, 04 = 2500, 05 = 2000, 06 = 1600, 07 = 1250, 08 = 1000
09 = 800, 0A = 640, 0B = 500, 0C = 400, 0D = 320, 0E = 250, 0F = 200, 10 = 160, 11 = 125, 12 = 100
13 = 80, 14 = 60, 15 = 50, 16 = 40, 17 = 30, 18 = 25, 19 = 20, 1A = 15, 1B = 13, 1C = 10
1D = 8
1E = 6
1F = 5
20 = 4
21 = 3
22 = 2.5
23 = 2
24 = 1.66(6)
25 = 1.33(3)
26 = 1
27 = 0.75
28 = 0.5
Since genus put it to auto, then it can be any value......why not try the values 1 by 1 to find out its function???
|
genus Joined: Apr 13, 2007 Posts: 385 From: Malaysia PM |
no, i alrdy try almost the value b4 when i test it for my mod...but why 00 is only 1/5000???? mayb it is not the setting for set_reg and is for com_event
i begin to think that is that k800i cannot hv exposure time more than 1/2???? it is maximum alrdy????
[ This Message was edited by: genus on 2007-11-03 15:49 ] |
SEKseries Joined: Sep 06, 2007 Posts: 46 From: Malaysia PM |
00 is auto,so it can be any speed according to the light condition(I think)......
|
genus Joined: Apr 13, 2007 Posts: 385 From: Malaysia PM |
No... for set_reg, i think it is 1/5000 only, i tried many picture alrdy. |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
if ur talking about EM mode this is how it works
// start Ehanced Mode from Raiderski
EM_RATIO_NORMAL= $s0 40;EM_RATIO_NIGHT= $s0 3d;< night mode
EM_SET=$p1 05
#EM_IN_QUALITY$c1 00
#READ_REG(28,$r2 1 1)< reads from the registry
$m0 1 $/0 28
$c0 00
$m0 1 $/0 03
$c0 00
$cl
$p0 07$c0 01 #EM_RATIO_NIGHT$cl #EM_RATIO_NORMAL$cx$-0 r1#COMMAND(04,$w0)$cx
$cx
$cx;
EM_UNSET=#COM_EVENT(04,00);<<< resets shutter speed after pic is taken
// end Ehanced Mode from Raidersk
[ This Message was edited by: number1 on 2007-11-03 16:04 ]
[ This Message was edited by: number1 on 2007-11-03 16:04 ] |
SEKseries Joined: Sep 06, 2007 Posts: 46 From: Malaysia PM |
On 2007-11-03 17:00:58, number1 wrote:
if ur talking about EM mode this is how it works
// start Ehanced Mode from Raiderski
EM_RATIO_NORMAL= $s0 40; EM_RATIO_NIGHT= $s0 3d;< night mode
EM_SET=$p1 05
#EM_IN_QUALITY$c1 00
#READ_REG(28,$r2 1 1)< reads from the registry
$m0 1 $/0 28
$c0 00
$m0 1 $/0 03
$c0 00
$cl
$p0 07$c0 01 #EM_RATIO_NIGHT$cl #EM_RATIO_NORMAL$cx$-0 r1#COMMAND(04,$w0)$cx
$cx
$cx;
EM_UNSET=#COM_EVENT(04,00);<<< resets shutter speed after pic is taken
// end Ehanced Mode from Raidersk
[ This Message was edited by: number1 on 2007-11-03 16:04 ]
How about these???
// start Ehanced Mode from Raiderski
EM_RATIO_NORMAL= $s0 40;
EM_RATIO_NIGHT= $s0 3d;
EM_SET=$p1 05
#EM_IN_QUALITY
$c1 00
#READ_REG(28,$r2 1 1)< reads from the registry<$m0 1 $/0 28
$c0 00
$m0 1 $/0 03<$c0 00
$cl
$p0 07$c0 01 #EM_RATIO_NIGHT
$cl #EM_RATIO_NORMAL
$cx$-0 r1#COMMAND(04,$w0)
$cx
$cx
$cx;
EM_UNSET=#COM_EVENT(04,00);
// end Ehanced Mode from Raidersk
_________________
[ This Message was edited by: SEKseries on 2007-11-03 16:13 ] |
number1 Joined: Sep 12, 2007 Posts: > 500 From: UK,kent,Sittingbourne PM |
esato screwed up my post u can read it here
http://www.4shared.com/file/28200409/132d7a1c/EM_online.html |
|
Access the forum with a mobile phone via esato.mobi
|