Does the SD series have a RAW toggle? - General Help and Assistance on using CHDK stable releases - CHDK Forum

Does the SD series have a RAW toggle?

  • 3 Replies
  • 3194 Views
Does the SD series have a RAW toggle?
« on: 17 / May / 2008, 07:05:44 »
Advertisements
I searched everywhere but can't find a definitive answer.

Another button question...if the FUNC button on the S series used for anything other than to toggle RAW?

Thanks!

*

Offline fe50

  • ******
  • 3147
  • IXUS50 & 860, SX10 Star WARs-Star RAWs
    • fe50
Re: Does the SD series have a RAW toggle?
« Reply #1 on: 17 / May / 2008, 07:39:35 »
The Shortcut on SD870 (Ixus 860IS) is PRINT & DISP.

*

Offline whim

  • ******
  • 2046
  • A495/590/620/630 ixus70/115/220/230/300/870 S95
Re: Does the SD series have a RAW toggle?
« Reply #2 on: 17 / May / 2008, 07:45:18 »
In the trunk (395) source code (include/camera.h) I found all ixuses have CAM_HAS_ERASE_BUTTON undefined.
in the following extract from  core/gui.c (lines 41-80):
Quote
#if !CAM_HAS_ERASE_BUTTON
//Alt mode
 #define SHORTCUT_TOGGLE_RAW          KEY_DISPLAY
 #define SHORTCUT_MF_TOGGLE           KEY_UP
//Half press shoot button   
 #define SHORTCUT_TOGGLE_HISTO        KEY_DOWN
 #define SHORTCUT_TOGGLE_ZEBRA        KEY_MENU
 #define SHORTCUT_TOGGLE_OSD          KEY_RIGHT
//Alt mode & Manual mode   
 #define SHORTCUT_SET_INFINITY        KEY_DISPLAY
 #define SHORTCUT_SET_HYPERFOCAL      KEY_DOWN
 // For models without ZOOM_LEVER  (#if !CAM_HAS_ZOOM_LEVER)
 // SHORTCUT_SET_INFINITY is not used
 // KEY_DISPLAY is used for gui_subj_dist_override_koef_enum;
 // KEY_LEFT/KEY_RIGHT is used for gui_subj_dist_override_value_enum (because of no separate ZOOM_IN/OUT)
 
#elif defined(CAMERA_g7) 
//Alt mode
 #define SHORTCUT_TOGGLE_RAW          KEY_ERASE
//Half press shoot button   
 #define SHORTCUT_TOGGLE_HISTO        KEY_DOWN
 #define SHORTCUT_TOGGLE_ZEBRA        KEY_LEFT
 #define SHORTCUT_TOGGLE_OSD          KEY_RIGHT
//Alt mode & Manual mode 
 #define SHORTCUT_SET_INFINITY        KEY_UP
 #define SHORTCUT_SET_HYPERFOCAL      KEY_DOWN

#else

//Alt mode
 #define SHORTCUT_TOGGLE_RAW          KEY_ERASE
//Half press shoot button   
 #define SHORTCUT_TOGGLE_HISTO        KEY_UP
 #define SHORTCUT_TOGGLE_ZEBRA        KEY_LEFT
 #define SHORTCUT_TOGGLE_OSD          KEY_RIGHT
//Alt mode & Manual mode 
 #define SHORTCUT_SET_INFINITY        KEY_UP
 #define SHORTCUT_SET_HYPERFOCAL      KEY_DOWN
#endif


you can see that the RAW toggle is KEY_DISPLAY while in <Alt> mode for ixuses.
(because "if !CAM_HAS_ERASE_BUTTON" means - roughly - if CAM_HAS_ERASE_BUTTON is undefined)

HTH,

wim

BTW: Is there a recommended way to suggest stuff for your (excellent!) User Guide ?

edit: fe50 was faster, posted anyway cause method could be useful for other questions

 
« Last Edit: 17 / May / 2008, 07:49:58 by whim »

Re: Does the SD series have a RAW toggle?
« Reply #3 on: 17 / May / 2008, 08:12:12 »
Thanks a lot for the info guys.


To make suggestions for the guide just create a reply to the thread.  Thanks!

CHDK End-User's Guide 03  - 16-MAY-08


 

Related Topics