I am using CHDK on the a3300is to capture raw. I previously took raw pictures with the sd100 which were .crw files. I read and convert these files with David Coffin's DCRAW but it couldn't decode the .crw files taken with the a3300is. I attempted to clean the .crw's with cleancrw.c and the command line returned that the files taken were not .crw's. I use the following script to take many images at different exposure times:
@title Fore-Back
@param m max tv96
@default m=288
@param n number of shots
@default n=36
if n<1 then n=1
if x<0 then x=0
if y<0 then y=0
set_raw 1
set_raw_nr 1
for h=1 to n
x=m-8*h
set_tv96_direct x
shoot
sleep 1000
next h
for g=1 to n
y=8*g
set_tv96_direct y
shoot
sleep 1000
next g
end
I manually select capture raw and .crw as the format. Is there something in this script that could be giving me the wrong file type? Is there something different about .crw's taken by these cameras? The same version of CHDK is loaded on both as I switch the same memory card back and forth.