Helo,
After 3 years of CHDK uses on different canon ( A480, SD1100, and a other one) ), it looks like, I've just encounter my first "damage" with CHDK and my first register on the forum. So I am not so fair of finding the solution in the forum.
I use a IXUS 115HS with 101C firmware (sse ACID verbose below) with CHDK #1.1.0-2079
The script I used : Ultra Intervalometer (see below)
The battery was too low and the apn stop retracting the lens after 2 hours and 907 images done.
Now, when I want to start this IXUS, it succeed to load CHDK and show the last picture done.
But it can't open the lens, saying the lens has trouble and have to shutdown. Just the same when you want to start it having some thing physically blocking the lens.
When using a SD card without CHDK, after some times of blinking, it directly ask for shutdown.
Could some one help me to solve this problem.
Philippe.
-------------------------- ACID verbose --------------------------------
Downloading build information from
http://mighty-hoernsche.de/Downloading build information from
http://mighty-hoernsche.de/trunk/Downloading build information from
http://autobuild.akalab.de/release_full.txtDownloading build information from
http://autobuild.akalab.de/trunk_full.txtDownloading build information from
http://stereo.jpn.org/eng/sdm/download.htmDownloading build information from
http://zenoshrdlu.com/assist/sdm/download.htmtables loaded successfully
/Volumes/CANON_DC/DCIM/124___12/IMG_0907.JPG is being processed
Downloading
http://zenoshrdlu.com/acid/acidchdk.propertiesStable CHDK - searching for build for ixus115_elph100hs-101c
Stable CHDK - build found - bins/ixus115_elph100hs-101c-1.2.0-3280-full_BETA.zip
Stable CHDK - build found - bins/ixus115_elph100hs-101c-1.2.0-3280_BETA.zip
Downloading
http://zenoshrdlu.com/acid/acidchdkt.propertiesTrunk CHDK - searching for build for ixus115_elph100hs-101c
Trunk CHDK - build found - bins/ixus115_elph100hs-101c-1.3.0-3282-full_BETA.zip
Trunk CHDK - build found - bins/ixus115_elph100hs-101c-1.3.0-3282_BETA.zip
Downloading
http://zenoshrdlu.com/acid/acidchdes.propertiesStabiles CHDK-DE - searching for build for ixus115_elph100hs-101c
Stabiles CHDK-DE - build found - CHDK_DE_ixus115_elph100hs-101c-1.2.0-3280-full_BETA_rev_3280.zip
Stabiles CHDK-DE - build found - CHDK_DE_ixus115_elph100hs-101c-1.2.0-3280_BETA_rev_3280.zip
Downloading
http://zenoshrdlu.com/acid/acidchdet.propertiesExperimentelles CHDK_DE - searching for build for ixus115_elph100hs-101c
Experimentelles CHDK_DE - build found - CHDK_DE_ixus115_elph100hs-101c-1.3.0-3282-full_BETA_rev_3282.zip
Experimentelles CHDK_DE - build found - CHDK_DE_ixus115_elph100hs-101c-1.3.0-3282_BETA_rev_3282.zip
Downloading
http://zenoshrdlu.com/acid/acidsdm.propertiesDownloading
http://zenoshrdlu.com/acid/assistsdmx.propertiesSDM - no build found for Canon IXUS 115 HS 101c
Processing completed
-------------------------- Ultra Intervalometer script -------------------
rem Author - Keoeeit
rem Written for S-Series
rem Should be okay on others
rem Use Endless mode with caution
rem See documentation for important info
rem first version
@title Ultra Intervalometer
@param a Delay 1st Shot (Mins)
@default a 0
@param b Delay 1st Shot (Secs)
@default b 0
@param c Number of Shots
@default c 500
@param d Interval (Minutes)
@default d 0
@param e Interval (Seconds)
@default e 0
@param f Interval (10th Seconds)
@default f 3
@param g Endless? No=0 Yes=1
@default g 0
p=a*60000+b*1000
t=d*60000+e*1000+f*100
if c<1 then let c=5
if t<100 then let t=100
if g<0 then let g=0
if g>1 then let g=1
if p<0 then let p=0
z=t*c
y=p+z
print "1 Cycle Time:", y/60000; "min", y%60000/1000; "sec"
goto "interval"
:interval
if p>0 then gosub "pause"
print "Shot 1 of", c
shoot
if c=1 then end
for n=2 to c
sleep t
print "Shot", n, "of", c
shoot
next n
if g=1 then goto "interval" else end
:pause
n=(a*60)+b
for m=1 to n
q=n-m
print "Intvl Begins:", q/60; "min", q%60; "sec"
sleep 930
next m
return