Author |
supermode driver for C702/C510/C902/K850? FAILED |
code28h4p Joined: Apr 24, 2008 Posts: > 500 From: Republic of Indonesia PM |
Is there any development for C702 camdriver? (Base on R3EA037 please) |
|
geele76 Joined: Sep 23, 2007 Posts: 23 PM |
On 2009-03-30 23:26:35, Raiderski wrote:
strong
I think you should start from basic test to be sure that shutter speed activation before snapshot is working fine. if EXIF exposure time won't be 1/5000s in every first shot taken just after camera start then this code must be fixed before anything else
Code:
|
seq_ss_start=
$cf.0f 0
$sf.0f 1
#CHANGE_MODE(34,00)
$sf.02 1
#SET_REG(64,02) // 1/5000s
#COM_EVENT(02,02) // AE, shutter speed priority
$cx
$cf.02 1
#CHANGE_MODE(31,02)
$sf.02 0
$cl
$cx; |
|
geele
1. maybe you should remove #COM_EVENT(5A,01) ?
2. $cl $cx $cx $cx $cx $cx - this sequence is unnecesary
3. ISO? let me guess...
08 = 500
09 = 640
0a = 800
0b = 1000
0c = 1250
0d = 1600
I removed "#COM_EVENT(5A,01)" and there is no effect ( still not working flash). Brazuka know how to implement manual ISO in c902, but he is out of modding. |
jigonx Joined: Oct 16, 2007 Posts: 327 PM |
On 2009-03-30 23:26:35, Raiderski wrote:
I think you should start from basic test to be sure that shutter speed activation before snapshot is working fine. if EXIF exposure time won't be 1/5000s in every first shot taken just after camera start then this code must be fixed before anything else
Code:
|
seq_ss_start=
$cf.0f 0
$sf.0f 1
#CHANGE_MODE(34,00)
$sf.02 1
#SET_REG(64,02) // 1/5000s
#COM_EVENT(02,02) // AE, shutter speed priority
$cx
$cf.02 1
#CHANGE_MODE(31,02)
$sf.02 0
$cl
$cx; |
|
i try this code, not working.
at first shot after open the camera, it takes longer time to take and save picture than next shot, but shutter speed 1/5000s not work.
[ This Message was edited by: jigonx on 2009-04-01 14:29 ] |
ta_power Joined: Jan 16, 2006 Posts: 69 From: Thailand PM, WWW
|
HEX Table For Speed Shutter
for K850i I have try it out and the result is it only work at 1/6000s on my K850i it will not go for 1/8000s hope it used full for you guy.
[ This Message was edited by: ta_power on 2009-04-07 10:19 ] |
Raiderski Joined: Jul 03, 2006 Posts: > 500 From: Poland, Hell, Mountains PM, WWW
|
exposures longer than 2s are working?
|
rodrigoc_p Joined: Nov 06, 2007 Posts: 37 PM |
On 2009-04-03 12:07:48, Raiderski wrote:
exposures longer than 2s are working?
No! Shutter both manual and automatic shutter doesn't work more than 2 seconds |
ds934118 Joined: Apr 04, 2009 Posts: 43 PM |
On 2009-03-31 16:34:47, code28h4p wrote:
Is there any development for C702 camdriver? (Base on R3EA037 please)
I want to konw,too.
|
ta_power Joined: Jan 16, 2006 Posts: 69 From: Thailand PM, WWW
|
On 2009-04-03 12:07:48, Raiderski wrote:
exposures longer than 2s are working?
the phone only work with 2 sec. no more then that and also for fast speed shutter only go up to 1/6000 no more then that
i try that my self
|
Die Joined: May 06, 2009 Posts: 10 PM |
why i must buy an A2  |
pohuman Joined: Jan 12, 2008 Posts: > 500 PM |
On 2009-05-23 16:00:12, Die wrote:
why i must buy an A2
What is the problem?
[ This Message was edited by: pohuman on 2009-05-26 12:02 ] [addsig] |
Die Joined: May 06, 2009 Posts: 10 PM |
there's no supermode  |
corer Joined: Jan 04, 2009 Posts: 53 PM, WWW
|
On 2009-04-07 11:15:15, ta_power wrote:
On 2009-04-03 12:07:48, Raiderski wrote:
exposures longer than 2s are working?
the phone only work with 2 sec. no more then that and also for fast speed shutter only go up to 1/6000 no more then that
i try that my self
why it was just up to 1/5000s on my phone..how did u do that? changed the fps value?
|
fpxf Joined: Jun 14, 2009 Posts: 5 From: China PM |
who can tell me the function of $c1~$c8 and $p1~$p8 reg for K850 camdriver??? help~~
the start of manual focus code in HS video mode:
$c8 01 //if in HS videi mode?
$p1 07
$c1 01
I can't understand the mode code $c8 01,if we want to change it to sence mode(for example:normal mode),how can we write this code?
thanks~
[ This Message was edited by: fpxf on 2009-06-15 12:37 ] |
Autochrome Joined: Jun 13, 2009 Posts: 24 PM |
On 2009-06-15 13:31:40, fpxf wrote:
who can tell me the function of $c1~$c8 and $p1~$p8 reg for K850 camdriver??? help~~
the start of manual focus code in HS video mode:
$c8 01 //if in HS videi mode?
$p1 07
$c1 01
I can't understand the mode code $c8 01,if we want to change it to sence mode(for example:normal mode),how can we write this code?
thanks~
[ This Message was edited by: fpxf on 2009-06-15 12:37 ]
$c8 01 checks if camera is currently running in video camera or still camera mode, 01 stands for video camrea mode
If camera is in video mode, we then put the current value of property 7 (night mode ) into register 1 for comparison.
$c1 01 checks if night mode is turned on (01 stands for night mode turned on)
To find out which scene is currently selected, use:
$p1 10
$c1 00 //If Auto scene (use 01 for portrait scene, 02 for landscape, etc.)
//your code goes here for the auto scene
$cl //else
//your code goes here if any other scene is selected
$cx //end if |
fpxf Joined: Jun 14, 2009 Posts: 5 From: China PM |
who can tell me how to limit on ISO64?? The value of ISO64. |
|