Changeset 1646
- Timestamp:
- 02/05/12 22:08:30 (17 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
platform/a1100/lib.c (modified) (1 diff)
-
platform/a1100/notes.txt (modified) (1 diff)
-
platform/a1100/platform_camera.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/release-1_0 merged: 1643-1645
- Property svn:mergeinfo changed
-
trunk/platform/a1100/lib.c
r1233 r1646 44 44 return 122; 45 45 } 46 47 /* 48 GetBatteryTemperature usually will get back temperature of battery compartment/batteries. GetBatteryTemperature is implemented in Canon's firmware for SX120IS. 49 Firmware entry point is identified but function is not usable. 50 Camera will crash if Canon's GetBatteryTemperature is called by CHDK. 51 To avoid a crash Canon's GetBatteryTemperature must not called. As long CHDK general code do not distinguish between cameras that support or don't support GetBatteryTemperature, 52 this function will be implemented as specific CHDK-code. It returns always with -99 53 This overrides original canon entry point from stubs_entry.S 54 */ 55 int _GetBatteryTemperature() 56 { 57 return -99; 58 } 59 -
trunk/platform/a1100/notes.txt
r1233 r1646 9 9 10 10 version -> [func.set]+[down] 11 12 Battery temperature is not available on this camera, always returns -99 13 14 Optical zoom in video does not work 15 16 Extra long exposures (>64 seconds) not implemented -
trunk/platform/a1100/platform_camera.h
r1641 r1646 38 38 #undef DEFAULT_RAW_EXT 39 39 #define DEFAULT_RAW_EXT 2 // use .CR2 40 # define CAM_EXT_TV_RANGE 041 # define CAM_AF_SCAN_DURING_VIDEO_RECORD 042 # define CAM_CAN_MUTE_MICROPHONE 043 # define CAM_EV_IN_VIDEO 040 #undef CAM_EXT_TV_RANGE 41 #undef CAM_AF_SCAN_DURING_VIDEO_RECORD 42 #undef CAM_CAN_MUTE_MICROPHONE 43 #undef CAM_EV_IN_VIDEO 44 44 45 45 #undef CAM_UNCACHED_BIT
Note: See TracChangeset
for help on using the changeset viewer.