Changeset 1970 for branches/release-1_0
- Timestamp:
- 07/10/12 05:49:42 (11 months ago)
- Location:
- branches/release-1_0
- Files:
-
- 33 added
- 3 edited
-
camera_list.csv (modified) (1 diff)
-
core/gui.c (modified) (2 diffs)
-
core/kbd.c (modified) (1 diff)
-
loader/a3200 (added)
-
loader/a3200/Makefile (added)
-
loader/a3200/blobs.S (added)
-
loader/a3200/entry.S (added)
-
loader/a3200/main.c (added)
-
loader/a3200/resetcode (added)
-
loader/a3200/resetcode/Makefile (added)
-
loader/a3200/resetcode/entry.S (added)
-
loader/a3200/resetcode/main.c (added)
-
platform/a3200 (added)
-
platform/a3200/Makefile (added)
-
platform/a3200/kbd.c (added)
-
platform/a3200/lib.c (added)
-
platform/a3200/main.c (added)
-
platform/a3200/notes.txt (added)
-
platform/a3200/platform_camera.h (added)
-
platform/a3200/shooting.c (added)
-
platform/a3200/sub (added)
-
platform/a3200/sub/100d (added)
-
platform/a3200/sub/100d/Makefile (added)
-
platform/a3200/sub/100d/boot.c (added)
-
platform/a3200/sub/100d/capt_seq.c (added)
-
platform/a3200/sub/100d/kbd.c (added)
-
platform/a3200/sub/100d/lib.c (added)
-
platform/a3200/sub/100d/makefile.inc (added)
-
platform/a3200/sub/100d/movie_rec.c (added)
-
platform/a3200/sub/100d/stubs_asm.h (added)
-
platform/a3200/sub/100d/stubs_auto.S (added)
-
platform/a3200/sub/100d/stubs_entry.S (added)
-
platform/a3200/sub/100d/stubs_entry_2.S (added)
-
platform/a3200/sub/100d/stubs_min.S (added)
-
platform/a3200/sub/Makefile (added)
-
platform/a3200/wrappers.c (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-1_0/camera_list.csv
r1937 r1970 8 8 a3000,100c,BETA,, 9 9 a3000,100d,BETA,, 10 a3200,100d,ALPHA,, 10 11 a3300,100a,BETA,, 11 12 a3300,100c,BETA,, -
branches/release-1_0/core/gui.c
r1922 r1970 86 86 // KEY_LEFT/KEY_RIGHT is used for gui_subj_dist_override_value_enum (because of no separate ZOOM_IN/OUT) 87 87 88 #elif defined(CAMERA_a3300) // a3300 has no erase button, so make DISP button the toggle_raw and Alt +/- shortcuts.88 #elif defined(CAMERA_a3300) || defined(CAMERA_a3200)// a3300 has no erase button, so make DISP button the toggle_raw and Alt +/- shortcuts. 89 89 //Alt mode 90 90 // NOTE both of these conflict with adjustable alt … … 1520 1520 static const char* names[]={ "Print", "ISO"}; 1521 1521 static const int keys[]={ KEY_PRINT, KEY_ISO }; 1522 #elif defined(CAMERA_a3300) 1522 #elif defined(CAMERA_a3300) || defined(CAMERA_a3200) 1523 1523 static const char* names[]={ "Print", "Face", "Disp"}; 1524 1524 static const int keys[]={ KEY_PRINT, KEY_FACE, KEY_DISPLAY }; -
branches/release-1_0/core/kbd.c
r1734 r1970 110 110 defined(CAMERA_a1100) || \ 111 111 defined(CAMERA_a3000) || \ 112 defined(CAMERA_a3200) || \ 112 113 defined(CAMERA_a3300) 113 114 #define ZSTEP_TABLE_SIZE 8
Note: See TracChangeset
for help on using the changeset viewer.