Changeset 1335
- Timestamp:
- 09/12/11 02:46:06 (21 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
include/lolevel.h (modified) (1 diff)
-
platform/a410/sub/100f/stubs_entry_2.S (modified) (1 diff)
-
platform/generic/wrappers.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/lolevel.h
r1287 r1335 21 21 extern long _GetFocusLensSubjectDistanceFromLens(); 22 22 extern void _MoveFocusLensToDistance(short *dist); 23 #if defined(CAMERA_a410)24 extern void MoveFocusLensToDistanceA410(short *dist);25 #endif26 23 extern void _PutInNdFilter(); 27 24 extern void _PutOutNdFilter(); -
trunk/platform/a410/sub/100f/stubs_entry_2.S
r1287 r1335 42 42 NHSTUB(MFOn,0xffd24c18) 43 43 NHSTUB(MFOff,0xffd24c48) 44 45 NHSTUB(MoveFocusLensToDistance, MoveFocusLensToDistanceA410) //hack to make this work -
trunk/platform/generic/wrappers.c
r1316 r1335 262 262 #endif 263 263 { 264 #if defined(CAMERA_a410) // need to disable a (false) assert here to make this function work265 MoveFocusLensToDistanceA410((short*)&newpos);266 #else267 264 _MoveFocusLensToDistance((short*)&newpos); 268 #endif269 265 //while (focus_busy); 270 266 while ((shooting_is_flash_ready()!=1) || (focus_busy));
Note: See TracChangeset
for help on using the changeset viewer.