Changeset 935


Ignore:
Timestamp:
01/30/12 08:33:25 (16 months ago)
Author:
rudi_de
Message:

neuen Kamera a3300, Status: Alpha

Danke mk11174 und waterwingz!

+ neue Kamera a3300, Firmwareversion 100a und 100d hinzugefügt

  • Grundlage: internationaler Branch: Release-1.0, Changesets 1551,1617,1619

http://trac.assembla.com/chdk/changeset/1551/branches/release-1_0
http://trac.assembla.com/chdk/changeset/1617/branches/release-1_0
http://trac.assembla.com/chdk/changeset/1619/branches/release-1_0

Location:
trunk
Files:
44 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/camera_list.csv

    r931 r935  
    77a3000,100c,BETA,, 
    88a3000,100d,BETA,, 
     9a3300,100a,ALPHA,, 
     10a3300,100d,ALPHA,, 
    911a410,100f,ALPHA,100e, 
    1012a430,100b,BETA,, 
  • trunk/core/gui_draw.h

    r903 r935  
    700700    #define COLOR_HISTO_RG_PLAY COLOR_YELLOW 
    701701 
     702#elif CAM_BITMAP_PALETTE==15    // Used by :- A3300IS 
     703    #define COLOR_TRANS                 0x4C 
     704    #define COLOR_WHITE         0x01 
     705    #define COLOR_RED           0x6C 
     706    #define COLOR_GREY          0x1D 
     707    #define COLOR_GREEN         0x5A 
     708    #define COLOR_BLUE_LT       0x58 
     709    #define COLOR_BLUE          0x6D 
     710    #define COLOR_YELLOW        0x51 
     711    #define COLOR_BG            COLOR_TRANS 
     712    #define COLOR_FG            COLOR_WHITE 
     713    #define COLOR_SELECTED_BG   COLOR_RED 
     714    #define COLOR_SELECTED_FG   COLOR_WHITE 
     715    #define COLOR_ALT_BG        COLOR_TRANS 
     716    #define COLOR_SPLASH_RED    COLOR_RED 
     717    #define COLOR_SPLASH_PINK   COLOR_YELLOW 
     718    #define COLOR_SPLASH_GREY   COLOR_GREY 
     719    // colors for blended histo 
     720    #define COLOR_HISTO_R       COLOR_RED 
     721    #define COLOR_HISTO_R_PLAY  0x9F 
     722    #define COLOR_HISTO_B       COLOR_BLUE 
     723    #define COLOR_HISTO_G       COLOR_GREEN 
     724    #define COLOR_HISTO_G_PLAY  0xA0 
     725    #define COLOR_HISTO_BG      COLOR_BLUE_LT 
     726    #define COLOR_HISTO_RG      COLOR_YELLOW 
     727    #define COLOR_HISTO_RB      0x66 
     728    #define COLOR_HISTO_RB_PLAY 0x9F 
     729    #define COLOR_HISTO_B_PLAY  0xA1 
     730    #define COLOR_HISTO_BG_PLAY 0xA0 
     731    #define COLOR_HISTO_RG_PLAY 0x9F 
     732    #undef SCREEN_COLOR 
     733    #define SCREEN_COLOR        0x4C 
     734 
     735    // Icon colors 
     736    // 3 shades of Red, Green, Yellow and Grey 
     737    // Separate definitions for record and playback mode 
     738    // to cater for cameras with variable palettes 
     739    // Record mode colors 
     740    #define     COLOR_ICON_REC_RED                      COLOR_RED 
     741    #define     COLOR_ICON_REC_RED_DK           COLOR_RED 
     742    #define     COLOR_ICON_REC_RED_LT           COLOR_RED 
     743    #define     COLOR_ICON_REC_GREEN            0x90 
     744    #define     COLOR_ICON_REC_GREEN_DK         COLOR_GREEN 
     745    #define     COLOR_ICON_REC_GREEN_LT         0x50 
     746    #define     COLOR_ICON_REC_YELLOW           0x6B 
     747    #define     COLOR_ICON_REC_YELLOW_DK        COLOR_YELLOW 
     748    #define     COLOR_ICON_REC_YELLOW_LT        0x6B 
     749    #define     COLOR_ICON_REC_GREY                     COLOR_GREY 
     750    #define     COLOR_ICON_REC_GREY_DK          COLOR_GREY 
     751    #define     COLOR_ICON_REC_GREY_LT          0x13 
     752    // Playback mode colors 
     753    #define     COLOR_ICON_PLY_RED                      0x9F 
     754    #define     COLOR_ICON_PLY_RED_DK           0x9F 
     755    #define     COLOR_ICON_PLY_RED_LT           0x9F 
     756    #define     COLOR_ICON_PLY_GREEN            0xA0 
     757    #define     COLOR_ICON_PLY_GREEN_DK         0xA0 
     758    #define     COLOR_ICON_PLY_GREEN_LT         0x9E 
     759    #define     COLOR_ICON_PLY_YELLOW           0x92 
     760    #define     COLOR_ICON_PLY_YELLOW_DK        0x92 
     761    #define     COLOR_ICON_PLY_YELLOW_LT        0x90 
     762    #define     COLOR_ICON_PLY_GREY                     COLOR_ICON_REC_GREY 
     763    #define     COLOR_ICON_PLY_GREY_DK          COLOR_ICON_REC_GREY_DK 
     764    #define     COLOR_ICON_PLY_GREY_LT          COLOR_ICON_REC_GREY_LT 
     765 
    702766#else 
    703767    #error CAM_BITMAP_PALETTE not defined 
  • trunk/core/kbd.c

    r931 r935  
    107107    defined(CAMERA_ixus980_sd990) || \ 
    108108    defined(CAMERA_a1100) || \ 
    109     defined(CAMERA_a3000) 
     109    defined(CAMERA_a3000) || \ 
     110    defined(CAMERA_a3300) 
    110111#define ZSTEP_TABLE_SIZE 8 
    111112static int nTxtbl[]={0,1,2,3,4,5,6,7}; 
  • trunk/include/modelist.h

    r925 r935  
    125125    MODE_SNOW               , 
    126126    MODE_FIREWORK           , // ixus1000 end 
     127    MODE_LIVE               , // A3300is 
     128    MODE_DISCREET           , // A3300is 
    127129}; 
    128130 
Note: See TracChangeset for help on using the changeset viewer.