Esato Mobile
Sony Ericsson / Sony : Software, Firmware and Drivers : supermode driver for C702/C510/C902/K850? FAILED
> New Topic
> Reply
< Esato Forum Index > Sony Ericsson / Sony > Software, Firmware and Drivers > supermode driver for C702/C510/C902/K850? FAILED Bookmark topic
Page <  12345678910>

strong Posts: > 500

ok i tested value 64 and the results is the same if i lock exposure
but the em mode does not works
may be code is wrong?
i use this:
EM_SET=
$cf.0e 1
$cf.0f 0
$sf.0f 1
#READ(2a,$r2 1 1)
$m0 1 $/0 28
$c0 00
$m0 1 $/0 03
$c0 00
$cl
$s5 40
$-5 r1
$sf.02 1
#MODE(34,00)
#COMMAND(64,$w5)
$cx
$cx
$cx
$cx;

EM_UNSET= #COMMAND(64,00);

seq_vf_start = $cf.02 0 // If not in any draft mode
#MODE(33,00) // MODE_MAIN
#CMD(43,00) // MANUAL_FOCUS = 00, Infinity
#CMD(5A,01) // FLASH_INFO = 1
$sf.02 1 // Set draft flag to 1
$se 00 // Set snapshot operation to normal
$cl
#MODE(34,00)
#CMD(5A,01) // FLASH_INFO = 1

$sf.0f 0
#EM_UNSET

$cf.00 1 // If imst mode
#MODE(35,00) // IS_DRAFT mode
$c8 01 // If (IS) HS video mode
#MODE(38,00) // Mode IS HS draft
$cl $cx
$cl // Not in IS
$c8 01 // If HS video mode
#MODE(37,00) // Mode HS draft
$cl $cx $cx $cx;

seq_vf_stop =;

seq_ss_start =#EM_SET
$cf.02 1 // If draft mode?
#MODE(31,02) // Half-release with focus set to inf
$sf.02 0 // Not in draft mode
$cl $cx;

any idea?
[ This Message was edited by: strong on 2009-03-30 12:03 ]

--
Posted: 2009-03-30 13:03:25
Edit : Quote

geele76 Posts: 23

Hi to all! I tried to implement manual ISO in camdriver for C902. It works, but there is no flash support. LED not fired or fired only in first shot in auto ISO (effects, normal). Can you help me to solve this problem and who is the command for ISO 800 and ISO 1600???

#SET_REG(95,04) - Default ISO
#SET_REG(95,01) - ISO 100
#SET_REG(95,04) - ISO 200
#SET_REG(95,07) - ISO 400
#SET_REG(95,??) - ISO 800
#SET_REG(95,??) - ISO 1600


// Property 8, Effects (Manual ISO)
//---------------------------------------------------
// 0 => normal, 1 => negative, 2 => solarize, 3 => sepia
// 4 => black&white

seq_set_prop_8_0 =
#TO_DRAFT
$sd 02
$"CAMDRIVER0: Flash LED AUTO"
$sc 00
#SET_REG(95,04) // Default ISO 200
#COM_EVENT(02,00)
#COM_EVENT(11,00)
#COM_EVENT(5A,01) // FLASH_INFO = 1 Auto ISO
$cl $cx $cx $cx $cx $cx;

seq_set_prop_8_1 = // ISO 100
#TO_DRAFT
$sd 02
$"CAMDRIVER0: Flash LED AUTO"
$sc 01
#SET_REG(61,01)
#SET_REG(95,01)
#COM_EVENT(02,04)
#COM_EVENT(5A,01) // FLASH_INFO = 1
$cl $cx $cx $cx $cx $cx;

seq_set_prop_8_2 = // ISO 200
#TO_DRAFT
$sd 02
$"CAMDRIVER0: Flash LED AUTO"
$sc 04
#SET_REG(61,04)
#SET_REG(95,04)
#COM_EVENT(02,04)
#COM_EVENT(5A,01) // FLASH_INFO = 1
$cl $cx $cx $cx $cx $cx;

seq_set_prop_8_3 = //ISO 400
#TO_DRAFT
$sd 02
$"CAMDRIVER0: Flash LED AUTO"
$sc 07
#SET_REG(61,07)
#SET_REG(95,07)
#COM_EVENT(02,04)
#COM_EVENT(5A,01) // FLASH_INFO = 1
$cl $cx $cx $cx $cx $cx;

//seq_set_prop_8_4 = #WR_REG(0D, 84) ; // ISO 800

//seq_set_prop_8 =
//$s5 %0
//#TO_DRAFT
// #COM_EVENT(53,$w5)
// ;
--
Posted: 2009-03-30 18:08:03
Edit : Quote

Raiderski Posts: > 500

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

--
Posted: 2009-03-30 23:26:35
Edit : Quote

ceaser2008 Posts: > 500

@strong, raiderski

We (all K850i users) appreciat your continues efforts of making the best drive for K850i. I hope you guys will come up with some extraordinary. And may be supermode is also available. We want the subject of this thread to be changed to success from failed.
Best of luck to both of you. May angels guide you divinely.
--
Posted: 2009-03-31 06:47:58
Edit : Quote

strong Posts: > 500

@Raider
thanks ill try it

@ceaser2008
thanks my friend

EDIT: I report the result
with that code the exposure time is 1/15 Sec
so we must look for an other value or some think happens with iso control
may be the code needs fix
I tryed the 04 instead 64 value the result is the same
[ This Message was edited by: strong on 2009-03-31 14:08 ]

[ This Message was edited by: strong on 2009-03-31 16:16 ]

--
Posted: 2009-03-31 14:06:28
Edit : Quote

code28h4p Posts: > 500

Is there any development for C702 camdriver? (Base on R3EA037 please)
--
Posted: 2009-03-31 16:34:47
Edit : Quote

geele76 Posts: 23


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.
--
Posted: 2009-03-31 19:32:12
Edit : Quote

jigonx Posts: 327


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 ]

--
Posted: 2009-04-01 13:02:11
Edit : Quote

ta_power Posts: 69

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 ]

--
Posted: 2009-04-03 11:01:50
Edit : Quote

Raiderski Posts: > 500

exposures longer than 2s are working?
--
Posted: 2009-04-03 12:07:48
Edit : Quote
Page <  12345678910>

New Topic   Reply
Forum Index

Esato home