Esato Mobile
Sony Ericsson / Sony : Software, Firmware and Drivers : navar k850 v9.2 x3 FINAL camdrive
> New Topic
> Reply
< Esato Forum Index > Sony Ericsson / Sony > Software, Firmware and Drivers > navar k850 v9.2 x3 FINAL camdrive Bookmark topic
Page <  123 ... 131415 ... 515253>

Navar Posts: > 500

sorry guys iam buzy .just try it and tell me the result
[ This Message was edited by: Navar on 2010-01-07 13:43 ]

--
Posted: 2010-01-07 04:25:07
Edit : Quote

Navar Posts: > 500


[ This Message was edited by: Navar on 2010-03-23 09:08 ]

--
Posted: 2010-01-07 14:42:19
Edit : Quote

witchking Posts: 231

There are MANY errors in this camdriver...

e.g. these in lines which you copied from Brazzuka's v 6.0 driver have missing macros. The values i have made bold are not specified in the drive at all.

Code:
INIT_SAT_CC =
$p5 10
$c5 00
#COM_EVENT(58,#ST)
$cl
#COM_EVENT(58,03)
$cx;


Code:WB_CC =
#SET_REG(65,F8)
#SET_REG(66,04)
#COM_EVENT(13,01)
#INIT_SAT_CC;

Code:FL_R =
#COM_EVENT(58,#SR)
#COM_EVENT(55,#CR)
#COM_EVENT(13,00);


Code:
FL_A =
#COM_EVENT(58,#SA)
#COM_EVENT(55,#CA)
#COM_EVENT(13,00);


Many codes are conflicting, e.g.

These lines for flash mode copied from Bz 6.0 :
Code:FL_R =
#COM_EVENT(58,#SR)
#COM_EVENT(55,#CR)
#COM_EVENT(13,00);


Code:
FL_A =
#COM_EVENT(58,#SA)
#COM_EVENT(55,#CA)
#COM_EVENT(13,00);


they conflict with the lines of flash code that you copied from my driver, look at the values i made bold, i meant my driver to have CC on in flash whereas in bz 6.0, CC was off, so again that's a conflict:
Code:
RERFLASH = // Additional RER Flash settings
#COM_EVENT(58,06) //Saturation
#COM_EVENT(55,01) //Contrast
$p1 01
$c1 02
#COM_EVENT(13,01)
$cl
$c1 04
#COM_EVENT(13,01)
$cl
$p1 11
$c1 01
#COM_EVENT(13,01)
$cl
$p1 08
$c1 03
#COM_EVENT(13,01)
$cl
$p1 08
$c1 01
#COM_EVENT(13,01)
$cl
#COM_EVENT(13,00)
$cx $cx $cx $cx $cx;

Code:
AUTOFLASH = // Additional Auto Flash settings
#COM_EVENT(58,06) //Saturation
#COM_EVENT(55,01) //Contrast
$p1 01
$c1 02
#COM_EVENT(13,01)
$cl
$c1 04
#COM_EVENT(13,01)
$cl
$p1 11
$c1 01
#COM_EVENT(13,01)
$cl
$p1 08
$c1 03
#COM_EVENT(13,01)
$cl
$p1 08
$c1 01
#COM_EVENT(13,01)
$cl
#COM_EVENT(13,00)
$cx $cx $cx $cx $cx
;


In the same way, These lines below from Bz 6.0:
Code:
INIT_SAT_CC =
$p5 10
$c5 00
#COM_EVENT(58,#ST)
$cl
#COM_EVENT(58,03)
$cx;
WB_CC =
#SET_REG(65,F8)
#SET_REG(66,04)
#COM_EVENT(13,01)
#INIT_SAT_CC;
RET =
#COM_EVENT(13,00)
$p5 10
$c5 00
#COM_EVENT(58,08)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 01
#COM_EVENT(58,04)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 02
#COM_EVENT(58,08)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 03
#COM_EVENT(58,04)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 04
#COM_EVENT(58,05)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 05
#COM_EVENT(58,07)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 06
#COM_EVENT(58,04)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 07
#COM_EVENT(58,06)
#COM_EVENT(55,FF)
$cl
$cx;

Conflict with:
Code:
COLOURGAIN =
$p5 10
$c5 00
#COM_EVENT(58,0A)
$cl
$c5 07
#COM_EVENT(58,01)
$cl
#COM_EVENT(58,07)
$cx
$cx
;

UPDATECOLOUR = // Improvement in colours
#SET_REG(65,FB) // 7f blue 00 - 7F = cyan, 80 - FF = red
#SET_REG(66,1A) // 7f green 00 - 7F = yellow, 80 - FF = magenta
#COM_EVENT(13,01)
#COLOURGAIN
;

CCOFF =
#COM_EVENT(13,00)
$p5 10
$c5 00
#COM_EVENT(58,0A)
#COM_EVENT(55,00)
$cl $cx
$p5 10
$c5 01
#COM_EVENT(58,04)
#COM_EVENT(55,00)
$cl
$cx
$p5 10
$c5 02
#COM_EVENT(58,06)
#COM_EVENT(55,00)
$cl
$cx
$p5 10
$c5 03
#COM_EVENT(58,02)
#COM_EVENT(55,00)
$cl
$cx
$p5 10
$c5 04
#COM_EVENT(58,02)
#COM_EVENT(55,00)
$cl
$cx
$p5 10
$c5 05
#COM_EVENT(58,0A)
#COM_EVENT(55,00)
$cl
$cx
$p5 10
$c5 06
#COM_EVENT(58,09)
#COM_EVENT(55,00)
$cl
$cx
$p5 10
$c5 07
#COM_EVENT(58,04)
#COM_EVENT(55,00)
$cl
$cx;



Some values are repeated, e.g. from Brazzuka's v 6.0 and v 8.0

From v 6.0:
Code:
INIT_SAT_CC =
$p5 10
$c5 00
#COM_EVENT(58,#ST)
$cl
#COM_EVENT(58,03)
$cx;
WB_CC =
#SET_REG(65,F8)
#SET_REG(66,04)
#COM_EVENT(13,01)
#INIT_SAT_CC;
RET =
#COM_EVENT(13,00)
$p5 10
$c5 00
#COM_EVENT(58,08)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 01
#COM_EVENT(58,04)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 02
#COM_EVENT(58,08)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 03
#COM_EVENT(58,04)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 04
#COM_EVENT(58,05)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 05
#COM_EVENT(58,07)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 06
#COM_EVENT(58,04)
#COM_EVENT(55,FF)
$cl
$cx
$p5 10
$c5 07
#COM_EVENT(58,06)
#COM_EVENT(55,FF)
$cl
$cx;

FL_R =
#COM_EVENT(58,#SR)
#COM_EVENT(55,#CR)
#COM_EVENT(13,00);
FL_A =
#COM_EVENT(58,#SA)
#COM_EVENT(55,#CA)
#COM_EVENT(13,00);


From v 8.0:
Code:
INIT_SAT_CC =
$p6 10
$c6 00
#COM_EVENT(58,0A)
$cl
$p5 10
$c5 07
#COM_EVENT(58,00)
$cl
#COM_EVENT(58,05)
$cx
$cx;



WB_CC =
$ph 09
$ch 01
#COM_EVENT(58,04)
#SET_REG(65,00)
#SET_REG(66,10)
#COM_EVENT(13,01)
$cl
#SET_REG(65,00)
#SET_REG(66,07)
#INIT_SAT_CC
$pi 01
$ci 00
#COM_EVENT(13,01)
$cl
#COM_EVENT(13,00)
$cx
$cx;

RET =
#COM_EVENT(13,00)
$p5 10 $c5 00 #COM_EVENT(58,0A) #COM_EVENT(55,00) $cl $cx
$p5 10 $c5 01 #COM_EVENT(58,05) #COM_EVENT(55,00) $cl $cx
$p5 10 $c5 02 #COM_EVENT(58,06) #COM_EVENT(55,00) $cl $cx
$p5 10 $c5 03 #COM_EVENT(58,02) #COM_EVENT(55,00) $cl $cx
$p5 10 $c5 04 #COM_EVENT(58,02) #COM_EVENT(55,00) $cl $cx
$p5 10 $c5 05 #COM_EVENT(58,08) #COM_EVENT(55,00) $cl $cx
$p5 10 $c5 06 #COM_EVENT(58,09) #COM_EVENT(55,00) $cl $cx
$p5 10 $c5 07 #COM_EVENT(58,04) #COM_EVENT(55,00) $cl $cx;


FL_R =
#COM_EVENT(58,01)
#COM_EVENT(55,00)
#COM_EVENT(13,00);

FL_A =
#COM_EVENT(58,01)
#COM_EVENT(55,00)
#COM_EVENT(13,00);


UPDATE_MIN_FRMRATE = // Updates minimum framerate
$p5 10
$c5 03
#SET_REG(22,01) // DRAFT_MIN_FRMRATE 2 fps
$cl
#SET_REG(22,01) // DRAFT_MIN_FRMRATE 5 fps
$cx;

has also been written twice in the driver.

And the biggest mistake of all, ALL these macros are present in the driver but you have not added any in the driver code body, so none of them will be implemented...
--
Posted: 2010-01-07 15:22:15
Edit : Quote

Navar Posts: > 500

thank you witchking.i say already that my camdrive bassed on the orginal v3.7 and barazzuka v8.0 final.then iam not a moder and every one know that.i just share what i do with my owen camdrive.thank you agine.i will try to fix that errors.greating
Edite: witchking.i chekd my camdrive v8.0 there is just 1 code rpeated by mistake that the UPDATE_MINI_FRAMRATE .and i think i dont need to delet the rpeat 1.thank you to your notice any way.all the codes working
[ This Message was edited by: Navar on 2010-01-07 19:50 ]

--
Posted: 2010-01-07 16:25:49
Edit : Quote

bluechip Posts: 477

@NAVAR here's some macros from ur latest "k850 with love v5.4 updat with manual settings"
the results are extremely good, Congrats..




--
Posted: 2010-01-08 17:21:20
Edit : Quote

witchking Posts: 231


On 2010-01-07 16:25:49, Navar wrote:
thank you witchking.i say already that my camdrive bassed on the orginal v3.7 and barazzuka v8.0 final.then iam not a moder and every one know that.i just share what i do with my owen camdrive.thank you agine.i will try to fix that errors.greating
Edite: witchking.i chekd my camdrive v8.0 there is just 1 code rpeated by mistake that the UPDATE_MINI_FRAMRATE .and i think i dont need to delet the rpeat 1.thank you to your notice any way.all the codes working
[ This Message was edited by: Navar on 2010-01-07 19:50 ]



No, Update_min_framerate, WB_CC, INI_CC_SAT and others are also repeated, many values are not set and macros not implemented in driver code.
Try to fix.
--
Posted: 2010-01-08 17:29:12
Edit : Quote

Navar Posts: > 500

Bluechip thanx 4 the pic.Witchking.Ok i will chek that.Thank u agine.Iam work on NAVAR k850 v3.9 2010 now.I back from the begine with my first v
--
Posted: 2010-01-08 20:20:33
Edit : Quote

bluechip Posts: 477



--
Posted: 2010-01-10 10:00:00
Edit : Quote

Navar Posts: > 500

new!! v3.9 2010 in the first post
--
Posted: 2010-01-10 16:05:57
Edit : Quote

bluechip Posts: 477


On 2010-01-10 16:05:57, Navar wrote:
new!! v3.9 2010 in the first post


Hi NAVAR, your new driver is good, but i think it captures more red or it
make the picture a bit more reddish on daylight..
Pls check this if possible..
I cannot upload a pic now, but will do it later on to show you...
thankyou
--
Posted: 2010-01-11 17:31:33
Edit : Quote
Page <  123 ... 131415 ... 515253>

New Topic   Reply
Forum Index

Esato home