1 // Camera - sx120is - platform_camera.h 2 3 // This file contains the various settings values specific to the sx120is 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 #define CAM_PROPSET 3 24 #define CAM_DRYOS 1 25 //#define CAM_DRYOS_2_3_R39 1 // Don't define this - even though cam is R39 is still needs old CHDK code 26 27 #define CAM_RAW_ROWPIX 3728 // see platform/sub/*/lib.c 28 #define CAM_RAW_ROWS 2778 29 30 #define CAM_CAN_MUTE_MICROPHONE 1 31 #define CAM_SHOW_OSD_IN_SHOOT_MENU 0 32 #define CAM_REAR_CURTAIN 1 33 #define CAM_AF_SCAN_DURING_VIDEO_RECORD 1 34 #undef CAM_VIDEO_CONTROL 35 #define CAM_MULTIPART 1 36 #define CAM_HAS_JOGDIAL 1 37 #undef CAM_USE_ZOOM_FOR_MF 38 #undef CAM_UNCACHED_BIT // shut up compiler 39 #define CAM_UNCACHED_BIT 0x40000000 40 #undef CAM_SENSOR_BITS_PER_PIXEL 41 #define CAM_SENSOR_BITS_PER_PIXEL 12 42 #undef CAM_BLACK_LEVEL 43 #define CAM_BLACK_LEVEL 128 // black level set to 128 per reports on the forum 44 #define PARAM_CAMERA_NAME 4 // parameter number for GetParameterData 45 46 #undef CAM_DEFAULT_ALT_BUTTON 47 #define CAM_DEFAULT_ALT_BUTTON KEY_FACE 48 49 #define CAM_DNG_LENS_INFO { 60,10, 600,10, 28,10, 43,10 } // See comments in camera.h 50 51 #define cam_CFAPattern 0x01000201 // Green Blue Red Green 52 53 #define CAM_COLORMATRIX1 \ 54 728616, 1000000, -224281, 1000000, -104767, 1000000, \ 55 4176, 1000000, 440179, 1000000, 45782, 1000000, \ 56 26983, 1000000, 68443, 1000000, 186465, 1000000 57 58 #define CAM_ACTIVE_AREA_X1 12 59 #define CAM_ACTIVE_AREA_Y1 10 60 #define CAM_ACTIVE_AREA_X2 3664 61 #define CAM_ACTIVE_AREA_Y2 2768 62 #define cam_CalibrationIlluminant1 1 // Daylight 63 #define CAM_JPEG_WIDTH 3648 64 #define CAM_JPEG_HEIGHT 2736 65 66 #undef CAM_USES_ASPECT_CORRECTION 67 #define CAM_USES_ASPECT_CORRECTION 1 68 #undef CAM_BITMAP_WIDTH 69 #define CAM_BITMAP_WIDTH 720 // Actual width of bitmap screen in bytes 70 71 #define CAM_QUALITY_OVERRIDE 1 72 73 #define CAM_DRIVE_MODE_FROM_TIMER_MODE 1 // use PROPCASE_TIMER_MODE to check for multiple shot custom timer. 74 // Used to enabled bracketing in custom timer, required on many recent cameras 75 // see http://chdk.setepontos.com/index.php/topic,3994.405.html 76 77 #define CAM_DATE_FOLDER_NAMING 0x100 //Value found in the last function, which is called in GetImageFolder. (first compare) 78 79 #define CAM_HAS_FILEWRITETASK_HOOK 1 80 81 // #define REMOTE_SYNC_STATUS_LED 0xC0xxyyyy // specifies an LED that turns on while camera waits for USB remote to sync 82 83 #define CAM_SD_OVER_IN_AF 1 84 #define CAM_SD_OVER_IN_AFL 1 85 #define CAM_SD_OVER_IN_MF 1 86 87 //--------------------------------------------------