Changeset 1065
- Timestamp:
- 02/19/11 22:29:37 (2 years ago)
- Location:
- trunk/platform
- Files:
-
- 7 edited
-
g12/main.c (modified) (1 diff)
-
g12/sub/100c/capt_seq.c (modified) (2 diffs)
-
g12/sub/100e/capt_seq.c (modified) (2 diffs)
-
sx30/main.c (modified) (1 diff)
-
sx30/sub/100e/capt_seq.c (modified) (2 diffs)
-
sx30/sub/100h/capt_seq.c (modified) (2 diffs)
-
sx30/sub/100l/capt_seq.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/platform/g12/main.c
r1008 r1065 56 56 int get_focal_length(int zp) { 57 57 if (zp < 0) zp = 0; 58 else if (zp > NUM_FL) zp = NUM_FL;58 else if (zp >= NUM_FL) zp = NUM_FL-1; 59 59 return focus_len_table[zp*3]; 60 60 } -
trunk/platform/g12/sub/100c/capt_seq.c
r1017 r1065 605 605 " MOV R0, R5 \n" 606 606 " BL sub_FFB07624 \n" 607 608 " BL capt_seq_hook_raw_here\n" // added609 610 607 " B loc_FFB0788C \n" 611 608 … … 626 623 627 624 "loc_FFB0788C: \n" 625 626 " BL capt_seq_hook_raw_here\n" // added (16/2/2011, moved here so that long exposures work) 627 628 628 " MOV R6, R0 \n" 629 629 " B loc_FFB078BC \n" -
trunk/platform/g12/sub/100e/capt_seq.c
r1019 r1065 606 606 " MOV R0, R5 \n" 607 607 " BL sub_FFB077D4 \n" 608 609 " BL capt_seq_hook_raw_here\n" // added610 611 608 " B loc_FFB07A3C \n" 612 609 … … 627 624 628 625 "loc_FFB07A3C: \n" 626 627 " BL capt_seq_hook_raw_here\n" // added (16/2/2011, moved here so that long exposures work) 628 629 629 " MOV R6, R0 \n" 630 630 " B loc_FFB07A6C \n" -
trunk/platform/sx30/main.c
r1008 r1065 58 58 int get_focal_length(int zp) { 59 59 if (zp < 0) zp = 0; 60 else if (zp > NUM_FL) zp = NUM_FL;60 else if (zp >= NUM_FL) zp = NUM_FL-1; 61 61 return focus_len_table[zp]; 62 62 } -
trunk/platform/sx30/sub/100e/capt_seq.c
r1008 r1065 522 522 " MOV R0, R5 \n" 523 523 " BL sub_FFAEC8A0 \n" 524 525 " BL capt_seq_hook_raw_here\n" // added526 527 524 " B loc_FFAECB08 \n" 528 525 … … 543 540 544 541 "loc_FFAECB08: \n" 542 543 " BL capt_seq_hook_raw_here\n" // added (16/2/2011, moved here so that long exposures work) 544 545 545 " MOV R6, R0 \n" 546 546 " B loc_FFAECB38 \n" -
trunk/platform/sx30/sub/100h/capt_seq.c
r1008 r1065 522 522 " MOV R0, R5 \n" 523 523 " BL sub_FFAEC95C \n" 524 525 " BL capt_seq_hook_raw_here\n" // added526 527 524 " B loc_FFAECBC4 \n" 528 525 … … 543 540 544 541 "loc_FFAECBC4: \n" 542 543 " BL capt_seq_hook_raw_here\n" // added (16/2/2011, moved here so that long exposures work) 544 545 545 " MOV R6, R0 \n" 546 546 " B loc_FFAECBF4 \n" -
trunk/platform/sx30/sub/100l/capt_seq.c
r1008 r1065 522 522 " MOV R0, R5 \n" 523 523 " BL sub_FFAECB04 \n" 524 525 " BL capt_seq_hook_raw_here\n" // added526 527 524 " B loc_FFAECD6C \n" 528 525 … … 543 540 544 541 "loc_FFAECD6C: \n" 542 543 " BL capt_seq_hook_raw_here\n" // added (16/2/2011, moved here so that long exposures work) 544 545 545 " MOV R6, R0 \n" 546 546 " B loc_FFAECD9C \n"
Note: See TracChangeset
for help on using the changeset viewer.