Sony Ericsson / Sony : Software, Firmware and Drivers : All about camdriver modding (for modders)
>
New Topic
>
Reply<
Esato Forum Index
>
Sony Ericsson / Sony >
Software, Firmware and Drivers
> All about camdriver modding (for modders)
Bookmark topic
remember to change it for the k800i the k800i doesn't know what a WR_REG is, & 21 isn't sharping in the k800i it's 56 it makes no difference anyway i already tried it ages ago like this for k800i.
Code:
// Digital Sharpening, property 21
//
// 0 => Off 1 => +1 1 => +2 1 => +3
// 4 => +4 5 => +5 6 => Auto
//**************************************************
seq_set_prop_15_0 = #COM_EVENT(56,80);
seq_set_prop_15_1 = #COM_EVENT(56,00);
seq_set_prop_15_2 = #COM_EVENT(56,01);
seq_set_prop_15_3 = #COM_EVENT(56,02);
seq_set_prop_15_4 = #COM_EVENT(56,03);
seq_set_prop_15_5 = #COM_EVENT(56,04);
seq_set_prop_15_6 = #COM_EVENT(56,40);
also TO_DRAFT does nothing in the k800i.
[ This Message was edited by: number1 on 2008-03-05 20:23 ]
--
Posted: 2008-03-05 21:23:00
Edit :
Quote
On 2008-03-05 17:57:45, number1 wrote:
are these post-processing things really needed???
//**************************************************
// Contrast, property 20 ****
//**************************************************
// 0 => -8 ... 8 => 0 ... 17 => 8
//-------------------------------------------------
seq_set_prop_14 = $s5 %0
$-5 08
#COM_EVENT(55,$w5);
//**************************************************
// Sharpening, property 21 ****
//**************************************************
// 0 => -8 ... 8 => 0 ... 17 => 8
//-------------------------------------------------
seq_set_prop_15 = $s5 %0
$-5 08
#COM_EVENT(56,$w5);
i erased them from the driver it seems to make no difference
That can't be used because it's for control with the stick unexisting contrast/sharpening settings on the firmware (camera menu)
[ This Message was edited by: jomateixa on 2008-03-05 21:03 ]
--
Posted: 2008-03-05 22:00:03
Edit :
Quote
Some questions:
1. we can write this code:
Code:
if (a == y):
// some code
else:
// some other code
endif;
this way:
Code:
$ca y
// some code
$cl
// some other code
$cx;
but what about this:
Code:
switch (a):
case y:
case z:
// some code
endswitch;
?
2. how can i force ISO and Shutter speed in the same time?
[ This Message was edited by: sadeghi85 on 2008-03-28 09:38 ]
--
Posted: 2008-03-23 16:51:21
Edit :
Quote
if (a == y):
// some code
else:
// some other code
endif;
that should be possible but it depends what for,
iso + shutter #COM_EVENT(04,00) for shutter #COM_EVENT(05,00) for iso just put em together should work.
colour correction is the saturation and correction of green/yellow/red colours etc, like this
#COM_EVENT(58,10) saturation
#COM_EVENT(55,00) contrast
#SET_REG(20,FD) green/yellow colour correction (i think)
#SET_REG(21,F6) dunno what this one is
#COMMAND(13,01); engage colour correction
--
Posted: 2008-03-23 18:00:11
Edit :
Quote
On 2008-03-23 18:00:11, number1 wrote:
if (a == y):
// some code
else:
// some other code
endif;
that should be possible but it depends what for,
i want something like 'switch'.
iso + shutter #COM_EVENT(04,00) for shutter #COM_EVENT(05,00) for iso just put em together should work.
separately they're working but together not!
--
Posted: 2008-03-23 18:09:16
Edit :
Quote
switch between what though on the k800i i could only get the switch thing to work on a couple of things,
i think fixing the shutter speed using #COM_EVENT(04,00) also fixes the iso at 100 to get the exact shutter speed and it can't be overwritten.
--
Posted: 2008-03-23 18:18:26
Edit :
Quote
On 2008-03-23 18:18:26, number1 wrote:
switch between what though on the k800i i could only get the switch thing to work on a couple of things,
what?!
i think fixing the shutter speed using #COM_EVENT(04,00) also fixes the iso at 100 to get the exact shutter speed and it can't be overwritten.
no that isn't true at least for faster shutter speeds.
--
Posted: 2008-03-23 18:36:17
Edit :
Quote
i'm asking what your trying to switch between, and i'm not sure about the shutter speed on the k550i.
--
Posted: 2008-03-23 18:46:00
Edit :
Quote
@ number1
I never understand your line of thinking seems confused and sometimes if contradicts
--
Posted: 2008-03-23 19:25:34
Edit :
Quote
On 2008-03-23 19:25:34, brazuka wrote:
@ number1
I never understand your line of thinking seems confused and sometimes if contradicts
i didn't really understand you aswell your english isn't very good worse than mine lol you seem to have trouble constructing a sentence that makes sense.
--
Posted: 2008-03-23 19:29:57
Edit :
Quote
New Topic
Reply