Kyle,
If you are using a USB to SD card reader--you are probably just fine (I guess some of the very early version readers can also have issues).
You are using "bootable I:" (":" colon--not just "I")?
When you just "click" on the bootable program, Windows just opens a DOS command window, runs the program "bootable.exe" (without the "I:"), and when the program is done, the window just closes... That is all normal (but useless without the "I:" added).
If you want to just click on the "bootable" program without going through the command window--you can create a DOS Batch files (originally from pre-windows days)...
Use a text editor like Notepad to open a new file all boot-camera-I.bat (or whatever name you like). In that file, type in the following several lines:
echo on (so you can see what is happening on your screen)
bootable i: (the program hard coded to always do drive "I:"
pause (pause so you can see the results--make sure you hit <ENTER> at the end of this line)
And that is it...
You add more functions by doing things like (in this case, make the card bootable and copy the DISKBOOT.BIN program to your card:
echo on
dir i:
echo Check if card is present on computer. Press ^C to stop batch file
pause
bootable i:
copy c:\camera\DISKBOOT.BIN i:\
dir i:\
pause
Regarding as to why you are having problems running CHDK. I am probably going to type too much here--but since we can talk face to face, I want to make sure that there are no miss-understandings or assumptions that may be confusing us---
0. Pull the SD card from the camera and make sure that it is NOT WRITE PROTECTED.
1. have you checked your camera's firmware version? I have only heard of one version, but if yours is different (newer/older) than the version you have downloaded, it will hang the camera.
FAQ - CHDK Wiki2. Try formating your SD card directly with the "format I: /fs:fat"--This will force the FAT16 needed for the autoboot process to work (2GB cards should default to FAT16--but it won't hurt to make sure everything is correct
3. You are typing "bootable i:" or bootable I:" with the ":" right? In one line? No other variations like "bootable <i>" or "bootable <I:>"--?
4. After you have formated and made the card "bootable" (format first, then bootable). You need to get your CHDK software that matches your camera model and firmware version number... I have used this link to get the current "AllBest" code for my A720IS (also a Dry OS camera like the A650IS):
Index of /chdk/The A650IS supported file is:
allbest-a650-100d-37.zip
And you have used some version of "ZIP" to open up the compressed archive file and found the program:
DISKBOOT.BIN
PS.FIR
The only file you need is the DISKBOOT.BIN (PS.FIR does not work with "DryOS" and should not be in this release).
Copy the DISKBOOT.BIN from the ZIP file to i:\DISKBOOT.BIN (capitalization probably should not matter--but I preserve it just in case...).
And, for a start... That should be it. One file is all that is needed to start CHDK.
Pull the card from your reader, flip the write protect switch on. Place back in the camera and in either "Play" or "Shoot" mode, turn the camera on. You should see a small blue splash screen saying that CHDK is loaded.
If it crashes, I probably would need more information from you... You are using Windows XP? You are not renaming files, are you pulling the DISKBOOT.BIN from my posted link or another? You do have a A650IS with firmware version 1.00d? When you got the firmware version, your file name was "ver.req" (VER.REQ) and not "ver.reg" (VER.REG) or some other easy to make typo?
All I can think of for the moment...
Sincerely,
-Bill