Sony Ericsson / Sony : Software, Firmware and Drivers : ModMix Camdriver v2.0 Final with Manual Focus, Manual Contrast for K790/K800/K810
>
New Topic
>
Reply<
Esato Forum Index
>
Sony Ericsson / Sony >
Software, Firmware and Drivers
> ModMix Camdriver v2.0 Final with Manual Focus, Manual Contrast for K790/K800/K810
Bookmark topic
On 2008-01-25 19:47:59, killerPK wrote:
Yes its easily possible, just tell me where you want this option i.e in place of Sepia effect or Solarize effect etc?
Why not i.e instead of zoom...?I don`t use it....
[ This Message was edited by: Goldmen on 2008-01-25 19:30 ]
--
Posted: 2008-01-25 20:29:02
Edit :
Quote
On 2008-01-25 16:07:02, killerPK wrote:
On 2008-01-25 15:33:59, yorulezkos wrote:
i inserted this :
MANUAL_FOCUS = $p1 08
$c1 04 // Is Black-White Effect
#COM_EVENT(53,00)
#COM_EVENT(06,00)
$s4 %0
$-4 03 // Extend range for settings
$*4 08 // Extend 12 EV-Stick steps to 32 Focus steps
$/4 03
#SET_REG(32,01) // Extend Focus to full range
#COM_EVENT(43,$w4) // Set FOCUS with Stick (thx number1)
$c1 $cx;
in the gnus driver without the zoom line.. and MF is not working

.. the black and white effect just applies normaly
I also told you to copy the whole Exposure property from my driver and replace it on Genus 6.0, then MF will work.
i did that ..and then the camera does not start at all .... the phone resets ... .
--
Posted: 2008-01-25 20:31:09
Edit :
Quote
On 2008-01-25 20:29:02, Goldmen wrote:
On 2008-01-25 19:47:59, killerPK wrote:
Yes its easily possible, just tell me where you want this option i.e in place of Sepia effect or Solarize effect etc?
Why not i.e instead of zoom...?I don`t use it....
[ This Message was edited by: Goldmen on 2008-01-25 19:30 ]
zoom function cant be changed, so i'll add it to Negative effect.
@yorulezkos
Post the driver here, i'll edit it for you.
--
Posted: 2008-01-25 21:09:04
Edit :
Quote
On 2008-01-25 20:31:09, yorulezkos wrote:
On 2008-01-25 16:07:02, killerPK wrote:
On 2008-01-25 15:33:59, yorulezkos wrote:
i inserted this :
MANUAL_FOCUS = $p1 08
$c1 04 // Is Black-White Effect
#COM_EVENT(53,00)
#COM_EVENT(06,00)
$s4 %0
$-4 03 // Extend range for settings
$*4 08 // Extend 12 EV-Stick steps to 32 Focus steps
$/4 03
#SET_REG(32,01) // Extend Focus to full range
#COM_EVENT(43,$w4) // Set FOCUS with Stick (thx number1)
$c1 $cx;
in the gnus driver without the zoom line.. and MF is not working

.. the black and white effect just applies normaly
I also told you to copy the whole Exposure property from my driver and replace it on Genus 6.0, then MF will work.
i did that ..and then the camera does not start at all .... the phone resets ... .
That code is LOOPING INFINITE !
You cant change the effect back to normal if you first check if the effect is BW !
You need something like:
seq_set_prop_8 =
$s5 %0
$c5 04
#COM_EVENT(53,00) // replace BW Normal
$cl
#COM_EVENT(53,$w5) // take effect
$cx;
to set the right property code but to redirect the eben back to normal !
--
Posted: 2008-01-25 21:14:52
Edit :
Quote
On 2008-01-25 21:09:04, killerPK wrote:
zoom function cant be changed, so i'll add it to Negative effect.
O.K. Negative effect is good also...
Thank you!
--
Posted: 2008-01-25 21:20:58
Edit :
Quote
please put code contrast mode..
--
Posted: 2008-01-25 21:28:29
Edit :
Quote
On 2008-01-25 21:28:29, ghostweb wrote:
please put code contrast mode..
Be patient and wait,don`t force him...!
--
Posted: 2008-01-25 21:33:01
Edit :
Quote
oke
--
Posted: 2008-01-25 21:34:32
Edit :
Quote
On 2008-01-25 21:14:52, pietropizzi wrote:
On 2008-01-25 20:31:09, yorulezkos wrote:
On 2008-01-25 16:07:02, killerPK wrote:
On 2008-01-25 15:33:59, yorulezkos wrote:
i inserted this :
MANUAL_FOCUS = $p1 08
$c1 04 // Is Black-White Effect
#COM_EVENT(53,00)
#COM_EVENT(06,00)
$s4 %0
$-4 03 // Extend range for settings
$*4 08 // Extend 12 EV-Stick steps to 32 Focus steps
$/4 03
#SET_REG(32,01) // Extend Focus to full range
#COM_EVENT(43,$w4) // Set FOCUS with Stick (thx number1)
$c1 $cx;
in the gnus driver without the zoom line.. and MF is not working

.. the black and white effect just applies normaly
I also told you to copy the whole Exposure property from my driver and replace it on Genus 6.0, then MF will work.
i did that ..and then the camera does not start at all .... the phone resets ... .
That code is LOOPING INFINITE !
You cant change the effect back to normal if you first check if the effect is BW !
You need something like:
seq_set_prop_8 =
$s5 %0
$c5 04
#COM_EVENT(53,00) // replace BW Normal
$cl
#COM_EVENT(53,$w5) // take effect
$cx;
to set the right property code but to redirect the eben back to normal !
Thats the old code, this is the current code:
MANUAL_FOCUS = #COM_EVENT(72,00)
$p5 08
$c5 04 // Is Black-White Effect
#COM_EVENT(53,00)
#COM_EVENT(06,00)
#COM_EVENT(61,2A)
$s4 %0
$-4 03 // Extend range for settings
$*4 08 // Extend 12 EV-Stick steps to 32 Focus steps
$/4 03
#SET_REG(32,05) // Extend Focus to full range
#COM_EVENT(43,$w4) // Set FOCUS with Stick (thx number1)
$c1
$c5 00
#COM_EVENT(61,40)
$c1
$cx $cx
#COM_EVENT(72,00);
Now the phone reset problem is gone, is this code ok?
--
Posted: 2008-01-25 21:41:45
Edit :
Quote
the code is ok .. thanx

it works now ... the MF is made in steps.... its not like zooming ... but i quess that is the way it should be

... i think i'm jut new to it ... the zoom now goes automatic to ~30 % and its hard to use MF .. for me ..... when i had manual focus on a w810 without any zoom.. it was easyer .... at least for me

.... but i'll get used to your driver
--
Posted: 2008-01-25 22:25:37
Edit :
Quote
New Topic
Reply