Changeset 945
- Timestamp:
- 02/06/12 12:02:36 (16 months ago)
- Location:
- trunk/platform/a1100
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platform/a1100/lib.c
r942 r945 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 } -
trunk/platform/a1100/notes.txt
r591 r945 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
r920 r945 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.