root/platform/sx210is/platform_camera.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 // Camera - SX210IS - platform_camera.h
   2 
   3 // This file contains the various settings values specific to the SX210IS camera.
   4 // This file is referenced via the 'include/camera.h' file and should not be loaded directly.
   5 
   6 // If adding a new settings value put a suitable default in 'include/camera.h',
   7 // along with documentation on what the setting does and how to determine the correct value.
   8 // If the setting should not have a default value then add it in 'include/camera.h'
   9 // using the '#undef' directive along with appropriate documentation.
  10 
  11 // Override any default values with your camera specific values in this file. Try and avoid
  12 // having override values that are the same as the default value.
  13 
  14 // When overriding a setting value there are two cases:
  15 // 1. If removing the value, because it does not apply to your camera, use the '#undef' directive.
  16 // 2. If changing the value it is best to use an '#undef' directive to remove the default value
  17 //    followed by a '#define' to set the new value.
  18 
  19 // When porting CHDK to a new camera, check the documentation in 'include/camera.h'
  20 // for information on each setting. If the default values are correct for your camera then
  21 // don't override them again in here.
  22 
  23     //********
  24     //SX210   ASM1989 08.20.2010
  25     //********
  26     #define CAM_DRYOS_2_3_R39               1
  27 
  28     #define CAM_PROPSET                     3
  29 
  30     #define    CAM_DATE_FOLDER_NAMING       0x100
  31 
  32     #define CAM_DRYOS                       1
  33     #define CAM_RAW_ROWPIX                  4416 // from calcs see 100C lib.c   //ASM1989 08.20.2010  4416
  34     #define CAM_RAW_ROWS                    3296 //  "     "    "    "    "  //ASM1989 08.20.2010   3296
  35 
  36     #undef  CAM_CAN_UNLOCK_OPTICAL_ZOOM_IN_VIDEO
  37     #define CAM_ADJUSTABLE_ALT_BUTTON       1
  38     #define CAM_ALT_BUTTON_NAMES            { "Video", "Playback" }
  39     #define CAM_ALT_BUTTON_OPTIONS          { KEY_VIDEO, KEY_PLAYBACK }
  40 
  41     #undef  CAM_KEY_PRESS_DELAY
  42     #define CAM_KEY_PRESS_DELAY             100      // delay after a press
  43 
  44     #define CAM_HAS_VIDEO_BUTTON            1
  45     #define CAM_VIDEO_QUALITY_ONLY          1
  46     #undef  CAM_VIDEO_CONTROL
  47     #define CAM_MULTIPART                   1
  48     #define CAM_HAS_JOGDIAL                 1
  49     #undef  CAM_USE_ZOOM_FOR_MF
  50 
  51     #define CAM_BRACKETING                  1
  52 
  53     #undef  CAM_UNCACHED_BIT  // shut up compiler
  54     #define CAM_UNCACHED_BIT                0x40000000
  55     // pattern
  56     #define cam_CFAPattern 0x02010100 // Red  Green  Green  Blue
  57     // color
  58     // seem good asm1989
  59 
  60     #define    CAM_DNG_LENS_INFO            { 50,10, 700,10, 31,10, 59,10 }    // See comments in camera.h
  61 
  62     #define CAM_COLORMATRIX1                          \
  63         1026340, 1000000, -412992, 1000000, -158934, 1000000, \
  64         -59169, 1000000, 421214, 1000000, 23459, 1000000,     \
  65         28948, 1000000, 10693, 1000000, 127339,  1000000
  66 
  67     #define cam_CalibrationIlluminant1      17 // Standard Light A
  68 
  69     // cropping  //ASM1989 08.20.2010
  70     #define CAM_JPEG_WIDTH                  4320
  71     #define CAM_JPEG_HEIGHT                 3240
  72 
  73     // This works
  74     #define CAM_ACTIVE_AREA_X1              48
  75     #define CAM_ACTIVE_AREA_Y1              28
  76     #define CAM_ACTIVE_AREA_X2              4416-48
  77     #define CAM_ACTIVE_AREA_Y2              3296-28
  78 
  79     // camera name
  80     #define PARAM_CAMERA_NAME               4 // parameter number for GetParameterData
  81     #undef  CAM_SENSOR_BITS_PER_PIXEL
  82     #define CAM_SENSOR_BITS_PER_PIXEL       12
  83 
  84     #undef  CAM_HAS_ERASE_BUTTON
  85     #define CAM_SHOW_OSD_IN_SHOOT_MENU      1
  86 
  87     #undef CAM_USES_ASPECT_CORRECTION
  88     #define CAM_USES_ASPECT_CORRECTION      1  //camera uses the modified graphics primitives to map screens an viewports to buffers more sized
  89 
  90     #undef  CAM_BITMAP_WIDTH
  91     #define CAM_BITMAP_WIDTH                960
  92     #undef  CAM_BITMAP_HEIGHT
  93     #define CAM_BITMAP_HEIGHT               270
  94     #undef  CAM_SCREEN_WIDTH
  95     #define CAM_SCREEN_WIDTH                480
  96 
  97     #undef  EDGE_HMARGIN
  98     #define EDGE_HMARGIN                    10            //10 fits video mode of sx210
  99 
 100     //Testing Zebra stuff asmp1989 Dec2010
 101     #define CAM_ZEBRA_NOBUF                 1
 102 
 103     #define CAM_QUALITY_OVERRIDE            1
 104 
 105     #define CAM_DRIVE_MODE_FROM_TIMER_MODE  1   // use PROPCASE_TIMER_MODE to check for multiple shot custom timer.
 106                                                 // Used to enabled bracketing in custom timer, required on many recent cameras
 107                                                 // see http://chdk.setepontos.com/index.php/topic,3994.405.html
 108 
 109     #define CAM_MIN_ISO_OVERRIDE            100 // see http://chdk.setepontos.com/index.php?topic=5045.msg99863#msg99863
 110 
 111     #define CAM_AV_OVERRIDE_IRIS_FIX        1
 112 
 113     #define CAM_SD_OVER_IN_AFL              1
 114     #define CAM_SD_OVER_IN_MF               1
 115 
 116 //--------------------------------------------------

/* [<][>][^][v][top][bottom][index][help] */