Changeset 1552
- Timestamp:
- 01/14/12 22:04:32 (16 months ago)
- Location:
- trunk
- Files:
-
- 33 added
- 3 edited
-
camera_list.csv (modified) (1 diff)
-
core/gui_draw.h (modified) (1 diff)
-
core/kbd.c (modified) (1 diff)
-
loader/a3300 (added)
-
loader/a3300/Makefile (added)
-
loader/a3300/blobs.S (added)
-
loader/a3300/entry.S (added)
-
loader/a3300/main.c (added)
-
loader/a3300/resetcode (added)
-
loader/a3300/resetcode/Makefile (added)
-
loader/a3300/resetcode/entry.S (added)
-
loader/a3300/resetcode/main.c (added)
-
platform/a3300 (added)
-
platform/a3300/Makefile (added)
-
platform/a3300/kbd.c (added)
-
platform/a3300/lib.c (added)
-
platform/a3300/main.c (added)
-
platform/a3300/notes.txt (added)
-
platform/a3300/platform_camera.h (added)
-
platform/a3300/shooting.c (added)
-
platform/a3300/sub (added)
-
platform/a3300/sub/100a (added)
-
platform/a3300/sub/100a/Makefile (added)
-
platform/a3300/sub/100a/boot.c (added)
-
platform/a3300/sub/100a/capt_seq.c (added)
-
platform/a3300/sub/100a/kbd.c (added)
-
platform/a3300/sub/100a/lib.c (added)
-
platform/a3300/sub/100a/makefile.inc (added)
-
platform/a3300/sub/100a/movie_rec.c (added)
-
platform/a3300/sub/100a/stubs_asm.h (added)
-
platform/a3300/sub/100a/stubs_auto.S (added)
-
platform/a3300/sub/100a/stubs_entry.S (added)
-
platform/a3300/sub/100a/stubs_entry_2.S (added)
-
platform/a3300/sub/100a/stubs_min.S (added)
-
platform/a3300/sub/Makefile (added)
-
platform/a3300/wrappers.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/camera_list.csv
r1548 r1552 5 5 a3000,100c,BETA,, 6 6 a3000,100d,BETA,, 7 a3300,100a,ALPHA,,SKIP_AUTOBUILD 7 8 a410,100f,BETA,100e, 8 9 a430,100b,BETA,,SKIP_AUTOBUILD -
trunk/core/gui_draw.h
r1527 r1552 734 734 #define COLOR_HISTO_RG_PLAY COLOR_YELLOW 735 735 736 #elif CAM_BITMAP_PALETTE==14 737 738 // Used by :- A3300IS 739 740 #define COLOR_WHITE 0x01 741 #define COLOR_RED 0x6C 742 #define COLOR_GREY 0x1a 743 #define COLOR_GREY_LIGHT 0x0B 744 #define COLOR_GREY_DARK 0x19 745 #define COLOR_GREEN 0xa0 746 #define COLOR_BLUE_LT 0x96 747 #define COLOR_BLUE 0xa1 748 #define COLOR_YELLOW 0x92 749 #define COLOR_BG 0x62 750 #define COLOR_FG COLOR_WHITE 751 #define COLOR_SELECTED_BG 0x0e 752 #define COLOR_SELECTED_FG COLOR_BLACK 753 #define COLOR_ALT_BG COLOR_BG 754 #define COLOR_SPLASH_RED COLOR_RED 755 #define COLOR_SPLASH_PINK 0x9F // Orange 756 #define COLOR_SPLASH_GREY 0x16 757 #define COLOR_HISTO_R 0x6C 758 #define COLOR_HISTO_R_PLAY COLOR_RED 759 #define COLOR_HISTO_B 0x6D 760 #define COLOR_HISTO_B_PLAY COLOR_BLUE 761 #define COLOR_HISTO_G 0x90 762 #define COLOR_HISTO_G_PLAY COLOR_GREEN 763 #define COLOR_HISTO_BG 0x52 // COLOR_BLUE_LT 764 #define COLOR_HISTO_RG 0x51 // COLOR_YELLOW 765 #define COLOR_HISTO_RB 0x3D // COLOR_RED 766 #define COLOR_HISTO_RB_PLAY COLOR_HISTO_RB 767 #define COLOR_HISTO_BG_PLAY COLOR_BLUE_LT 768 #define COLOR_HISTO_RG_PLAY COLOR_YELLOW 769 #undef SCREEN_COLOR 770 #define SCREEN_COLOR 0x1D 771 772 // Icon colors 773 // 3 shades of Red, Green, Yellow and Grey 774 // Separate definitions for record and playback mode 775 // to cater for cameras with variable palettes 776 #define COLOR_ICON_REC_RED 0x3D 777 #define COLOR_ICON_REC_RED_DK 0x9F 778 #define COLOR_ICON_REC_RED_LT 0x1E 779 #define COLOR_ICON_REC_GREEN 0x90 780 #define COLOR_ICON_REC_GREEN_DK 0x5A 781 #define COLOR_ICON_REC_GREEN_LT 0x59 782 #define COLOR_ICON_REC_YELLOW 0x2D 783 #define COLOR_ICON_REC_YELLOW_DK 0x1E 784 #define COLOR_ICON_REC_YELLOW_LT 0x20 785 #define COLOR_ICON_REC_GREY COLOR_GREY 786 #define COLOR_ICON_REC_GREY_DK 0x1A 787 #define COLOR_ICON_REC_GREY_LT 0x11 788 #define COLOR_ICON_PLY_RED 0x9F 789 #define COLOR_ICON_PLY_RED_DK 0x9F 790 #define COLOR_ICON_PLY_RED_LT 0x1E 791 #define COLOR_ICON_PLY_GREEN 0xA0 792 #define COLOR_ICON_PLY_GREEN_DK 0xA0 793 #define COLOR_ICON_PLY_GREEN_LT 0x9E 794 #define COLOR_ICON_PLY_YELLOW 0x55 795 #define COLOR_ICON_PLY_YELLOW_DK 0x55 796 #define COLOR_ICON_PLY_YELLOW_LT 0x4C 797 #define COLOR_ICON_PLY_GREY COLOR_ICON_REC_GREY 798 #define COLOR_ICON_PLY_GREY_DK COLOR_ICON_REC_GREY_DK 799 #define COLOR_ICON_PLY_GREY_LT COLOR_ICON_REC_GREY_LT 800 801 736 802 #else 737 803 #error CAM_BITMAP_PALETTE not defined -
trunk/core/kbd.c
r1506 r1552 75 75 defined(CAMERA_a550) || defined(CAMERA_a560) || defined(CAMERA_a570) || defined(CAMERA_a580) || defined(CAMERA_a590) || \ 76 76 defined(CAMERA_ixus860_sd870) || defined(CAMERA_ixus960_sd950) || defined(CAMERA_ixus80_sd1100) || \ 77 defined(CAMERA_ixus970_sd890) || defined(CAMERA_ixus980_sd990) || defined(CAMERA_a1100) || defined(CAMERA_a3000) 77 defined(CAMERA_ixus970_sd890) || defined(CAMERA_ixus980_sd990) || defined(CAMERA_a1100) || defined(CAMERA_a3000)|| defined(CAMERA_a3300) 78 78 #define ZSTEP_TABLE_SIZE 8 79 79 static int nTxtbl[]={0,1,2,3,4,5,6,7};
Note: See TracChangeset
for help on using the changeset viewer.