SX100 IS - page 8 - Firmware Dumping - CHDK Forum

SX100 IS

  • 276 Replies
  • 141155 Views
*

Offline bether

  • *
  • 28
  • SX100 IS
Re: SX100 IS
« Reply #70 on: 29 / June / 2008, 09:26:32 »
Advertisements
Thanks Flar for answer. But I've next question.
Are scripts from the a720 will work by less or more match to SX100 script.
Does it depend of the work diskboot.bin.

*

Offline flar

  • *
  • 13
  • sx100is fw100c
Re: SX100 IS
« Reply #71 on: 29 / June / 2008, 09:37:51 »
Are scripts from the a720 will work by less or more match to SX100 script.
I don't know. I think they will not work. You have opportunity to test that.
Does it depend of the work diskboot.bin.
I think that they should not depend on platform. That is the main goal of scripts.

BUT! I'm not guru in CHDK. I've started to work on porting it for SX100IS two weeks ago. So that's only IMHO. I have no access to any working port of CHDK.

*

Offline bether

  • *
  • 28
  • SX100 IS
Re: SX100 IS
« Reply #72 on: 29 / June / 2008, 09:55:02 »
So far, Well done.
You are only hope :)

*

Offline flar

  • *
  • 13
  • sx100is fw100c
Re: SX100 IS
« Reply #73 on: 29 / June / 2008, 14:47:53 »
flar-sx100is-100c-2.zip - 0.08MB next build.
EWAVR - from the first look into sources pointed me into my bugs.

Look like keyboard work as it should be.

OSD work as in previous build. Or I should say: OSD not working  ;)


*

Offline bether

  • *
  • 28
  • SX100 IS
Re: SX100 IS
« Reply #74 on: 29 / June / 2008, 15:16:21 »
Good progress.
Also very well working GRID from this site:
Grids - CHDK Wiki

edit: WOW!  8) scripts works too!!! eg "Motion Detection"...
« Last Edit: 29 / June / 2008, 15:59:48 by bether »

*

Offline flar

  • *
  • 13
  • sx100is fw100c
Re: SX100 IS
« Reply #75 on: 29 / June / 2008, 16:48:48 »
Also very well working GRID from this site:
Grids - CHDK Wiki

edit: WOW!  8) scripts works too!!! eg "Motion Detection"...
That's the great news, as i haven't tested it!

Here is the next build. Look like OSD work. Though fundamental testing is needed.

All thanks should be said to EWAVR.

flar-sx100is-100c-3.zip - 0.08MB

Re: SX100 IS
« Reply #76 on: 29 / June / 2008, 17:09:02 »
edit: WOW!  8) scripts works too!!! eg "Motion Detection"...

I'm having some luck with scripts, too!   Can you tell us which motion detection script you're using?  Give us a link?

*

Offline bether

  • *
  • 28
  • SX100 IS
Re: SX100 IS
« Reply #77 on: 29 / June / 2008, 17:20:29 »
Thanks Great Flar!
At last OSD work correctly with all functions I think.
...I wait for "long exposure"...

To Newstech:
This script work for me:
____________________________________________________________________________
rem Author: fudgey - based on BarneyFive's MD Lightning6 and MLuna's Motion Detect scripts
rem Tested on A570IS, Allbest build 16
rem For bursts, set the camera in continuous shooting mode and set j>0
rem If j>0 in single shot mode, you will see your shot for j seconds on screen.
@title Fast MD with Burst/Preview 080205
@param a Columns
@default a 10
@param b Rows
@default b 10
@param c Threshold (0-255)
@default c 10
@param d Compare Interval (ms)
@default d 1
@param e Trigger Delay (0.1 sec)
@default e 42
@param f Rows to Exclude
@default f 0
@param g Pix-Step(speed/accuracy adj)
@default g 8
@param h Reg Mode(0-no,1-incl,2-excl)
@default h 0
@param i Measure Mode (1-Y,0-U,2-V)
@default i 1
@param j Burst/Preview (sec,0=off)
@default j 0
if a<1 then a=1
if b<1 then b=1
if c<0 then c=0
if g<1 then g=1
if f<1 then f=1
if j<0 then j=0
e=e*100
j=j*1000
print ">[";a;",";b;"] threshold: ";c
x=30000
if j>0 then goto "md_burst"
:md_singleshot
press "shoot_half"
t=0
do
md_detect_motion a, b, i, x, d, c, 1, t, h, 1, 1, a, f, 0, g, e
until t>0
click "shoot_full"
goto "md_singleshot"
:md_burst
press "shoot_half"
t=0
do
md_detect_motion a, b, i, x, d, c, 1, t, h, 1, 1, a, f, 0, g, e
until t>0
press "shoot_full"
let X=get_tick_count
:contloop
let U=get_tick_count
let V=(U-X)
if V<j then goto "contloop"
release "shoot_full" 
goto "md_burst"
____________________________________________________________________________


Re: SX100 IS
« Reply #78 on: 29 / June / 2008, 19:34:44 »
Thanks, Bether.

Flar, I'm having some trouble with bracketing scripts because the "click left" statement winds up activating the manual focus options. 

I see in ubasic.c:

static void wheel_left_statement(void){
  accept(TOKENIZER_WHEEL_LEFT);
#if defined (CAMERA_g7)
  JogDial_CCW();
#endif
  accept_cr();
}
...  with the same thing for wheel_right.

I think we want that conditional compile changed, since the SX100 has a jog dial as well.  Do you agree?

Re: SX100 IS
« Reply #79 on: 29 / June / 2008, 21:34:48 »
Wow, there so much development since. Great job everyone.

I'll revert on my experience with the build when I get some time.

Cheers!

 

Related Topics