Author Topic: Bug Reports against Recent Builds -- Report bugs here  (Read 27667 times)

Offline ewavr

  • Developers
  • Hero Member
  • ****
  • Posts: 1057
  • A710IS
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #45 on: 26 / August / 2008, 14:43:42 »
It is however a bit hard to test, as i couldn't find a way to force this execution path, it's indeed sort of random.

edit: Perhaps surround capt_seq_hook_raw_here with STR R0,[SP,#-4]! and LDR R0,[SP],#4 ?

P.S. It shouldn't be called a bug though, as it lives in any CHDK cam. Rather a pet. Or a feature, if you like.


Some time ago I noted this in russian forum. For me, better solution is:

int capt_seq_hook_raw_here(int x)
{
...bla-bla-bla...
return x;
}

Offline PhyrePhoX

  • Global Moderator
  • Guru Member
  • *****
  • Posts: 2254
  • make RAW not WAR
    • PhyreWorX
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #46 on: 30 / August / 2008, 17:42:39 »
so, do we have an actual implementation of this bugfix somewhere? i am not able to do it.

Offline whim

  • Guru Member
  • ******
  • Posts: 1954
  • A620/A630/A590-101b/i70-101b/i870-101a/i300
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #47 on: 03 / September / 2008, 15:29:22 »
juciphox 497 compile warning:

Quote
ubasic.c: In function `factor':
ubasic.c:182: warning: 'r' might be used uninitialized in this function

solution: replace (as seen above in /lib/ubasic/ubasic.c, line 182)

Quote
int   r;
by
Quote
int   r = 0;

see you,

wim
« Last Edit: 03 / September / 2008, 15:43:03 by whim »

Offline volfan254

  • Newbie
  • *
  • Posts: 1
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #48 on: 03 / September / 2008, 23:43:18 »
Last night September 2, 2008, I downloaded the Allgood Build for the A720. When I opened the zip file, there was only one file zipped into it. This will not work.

No matter where I have found the zip file, the *.fir file is missing.

Any suggestions?

Offline fudgey

  • Global Moderator
  • Guru Member
  • *****
  • Posts: 1690
  • a570is
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #49 on: 04 / September / 2008, 00:20:45 »
Last night September 2, 2008, I downloaded the Allgood Build for the A720. When I opened the zip file, there was only one file zipped into it. This will not work.

No matter where I have found the zip file, the *.fir file is missing.


DryOS cameras don't use the ps.fir file. You need to make the card bootable and write protect it to make a dryos cam boot CHDK. I believe CardTricks and SDM installer are probably the two easy alternatives for you to make the card bootable. See http://chdk.wikia.com/wiki/Bootable_SD_card

Offline Marco

  • Rookie
  • *
  • Posts: 9
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #50 on: 04 / September / 2008, 13:15:26 »
p.s. if I remember exactly, Allbest in russian forum tested a630 with the same CHDK modification, and it did not work...

Hi ewavr,

any luck to have this bug fixed?

Offline ewavr

  • Developers
  • Hero Member
  • ****
  • Posts: 1057
  • A710IS
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #51 on: 04 / September / 2008, 13:29:21 »
p.s. if I remember exactly, Allbest in russian forum tested a630 with the same CHDK modification, and it did not work...

Hi ewavr,

any luck to have this bug fixed?

No progress...
But I can make another test build (for which camera?).

Offline Marco

  • Rookie
  • *
  • Posts: 9
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #52 on: 04 / September / 2008, 13:49:31 »
No progress...
But I can make another test build (for which camera?).

powershot a630
Thanks for the reply.

Offline Marco

  • Rookie
  • *
  • Posts: 9
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #53 on: 04 / September / 2008, 13:53:45 »

CHDK Forum

Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #53 on: 04 / September / 2008, 13:53:45 »

Offline ewavr

  • Developers
  • Hero Member
  • ****
  • Posts: 1057
  • A710IS

Offline Marco

  • Rookie
  • *
  • Posts: 9
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #55 on: 04 / September / 2008, 13:59:48 »
thanks ewavr for the fast response.
I will try this evening. I'm at work now ;-)

Offline Marco

  • Rookie
  • *
  • Posts: 9
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #56 on: 04 / September / 2008, 22:13:42 »
Test version.


;-)
The bug is fixed.
I have done 3 times the test (pressing the shutter button quickly) and now
the raw files is saved.

spasiba bolshoi

Offline ewavr

  • Developers
  • Hero Member
  • ****
  • Posts: 1057
  • A710IS
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #57 on: 05 / September / 2008, 04:13:25 »
The bug is fixed.
I have done 3 times the test (pressing the shutter button quickly) and now
the raw files is saved.


Well, patch for A630 in trunk now.
IXUS950 also has this bug (as whoever says)... Maybe this bug present at all cameras newer than A710   >:(

Offline chiptune

  • Rookie
  • *
  • Posts: 14
Some errors with IF-commands (Allbest & JuciPhox)
« Reply #58 on: 05 / September / 2008, 15:36:19 »
Hello *.*,

there are some serious problems with script IF-commands (Allbest & JuciPhox).

Please have a look at the following small examples:

First IF-command is FALSE
Second IF-command is following the first
Second IF-command without "endif"
Code: [Select]
@title IF01
x=0
t=1
if x>0 then
if t>0 then A=2
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
Script is working correct

First IF-command is FALSE
Second IF-command is following the first
Second IF-command with "endif"
Code: [Select]
@title IF02
x=0
t=1
if x>0 then
if t>0 then A=2 endif
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
Script is working incorrect - "FALSE" is printed

First IF-command is FALSE
Print-command between first and second IF-command
Second IF-command without "endif"
Code: [Select]
@title IF03
x=0
t=1
if x>0 then
print "dummy"
if t>0 then A=2
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
parse err (pointing at the last line of the script)

First IF-command is FALSE
Print-command between first and second IF-command
Second IF-command with "endif"
Code: [Select]
@title IF04
x=0
t=1
if x>0 then
print "dummy"
if t>0 then A=2 endif
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
Script is working correct

First IF-command is TRUE
Second IF-command is following the first
Second IF-command without "endif"
Code: [Select]
@title IF05
x=0
t=1
if x=0 then
if t>0 then A=2
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct

First IF-command is TRUE
Second IF-command is following the first
Second IF-command with "endif"
Code: [Select]
@title IF06
x=0
t=1
if x=0 then
if t>0 then A=2 endif
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct

First IF-command is TRUE
Print-command between first and second IF-command
Second IF-command without "endif"
Code: [Select]
@title IF07
x=0
t=1
if x=0 then
print "dummy"
if t>0 then A=2
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct

First IF-command is TRUE
Print-command between first and second IF-command
Second IF-command with "endif"
Code: [Select]
@title IF08
x=0
t=1
if x=0 then
print "dummy"
if t>0 then A=2 endif
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct


Who can help anyway?

regards
chiptune


Offline maka45

  • Rookie
  • *
  • Posts: 15
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #59 on: 05 / September / 2008, 18:43:40 »
I suppose you have to try adding an 'else'(without statement):
else
endif

 


SimplePortal 2.3.3 © 2008-2010, SimplePortal