CHDK_DE Vorschauversion  Trunk Rev. 6014
 Alle Datenstrukturen Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Makrodefinitionen
shooting.c-Dateireferenz
#include "lolevel.h"
#include "platform.h"
#include "core.h"
#include "conf.h"
#include "keyboard.h"
#include "../generic/shooting.c"
+ Include-Abhängigkeitsdiagramm für shooting.c:

gehe zum Quellcode dieser Datei

Makrodefinitionen

#define PARAM_FILE_COUNTER   0x3A
 
#define PARAM_EXPOSURE_COUNTER   0x02
 

Funktionen

long get_file_next_counter ()
 
long get_target_file_num ()
 
long get_target_dir_num ()
 

Variablen

const ApertureSize aperture_sizes_table []
 
const ShutterSpeed shutter_speeds_table []
 
const ISOTable iso_table []
 
const CapturemodeMap modemap []
 

Makro-Dokumentation

#define PARAM_EXPOSURE_COUNTER   0x02

Definiert in Zeile 10 der Datei shooting.c.

#define PARAM_FILE_COUNTER   0x3A

Definiert in Zeile 8 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 129 der Datei shooting.c.

129  {
130  return get_file_counter();
131 }
long get_target_dir_num ( )

Definiert in Zeile 168 der Datei shooting.c.

168  {
169  long n;
170 
171  n = get_file_next_counter();
172  n = (n>>18)&0x3FF;
173  return n;
174 }
long get_target_file_num ( )

Definiert in Zeile 133 der Datei shooting.c.

133  {
134  long n;
135 
136 
137  n = get_file_next_counter();
138 
139  n = (n>>4)&0x3FFF;
140 
141  //n+=22;
142  return n;
143 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 343, "3.4" },
{ 10, 352, "3.5" },
{ 11, 384, "4.0" },
{ 12, 416, "4.5" },
{ 13, 448, "5.0" },
{ 14, 480, "5.6" },
{ 15, 512, "6.3" },
{ 16, 544, "7.1" },
{ 17, 576, "8.0" }
}

Definiert in Zeile 15 der Datei shooting.c.

const ISOTable iso_table[]
Initialisierung:
= {
{ -1, 1, "HI", -1},
{ 0, 0, "Auto", -1},
{ 1, 125 , "125", -1},
{ 2, 200, "200", -1},
{ 3, 400, "400", -1},
{ 4, 800, "800", -1},
{ 5, 1600, "1600", -1},
{ 6, 3200, "3200", -1},
}

Definiert in Zeile 80 der Datei shooting.c.

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_AUTO, 32768 },
{ MODE_P, 32772 },
{ MODE_PORTRAIT, 32783 },
{ MODE_KIDS_PETS, 32786 },
{ MODE_SMART_SHUTTER, 33321 },
{ MODE_BEST_IMAGE, 33289 },
{ MODE_NIGHT_SCENE, 33325 },
{ MODE_LOWLIGHT, 32801 },
{ MODE_SUPER_VIVID, 33318 },
{ MODE_POSTER_EFFECT, 33319 },
{ MODE_COLOR_ACCENT, 33309 },
{ MODE_COLOR_SWAP, 33310 },
{ MODE_FISHEYE, 33323 },
{ MODE_MINIATURE, 33324 },
{ MODE_BEACH, 32791 },
{ MODE_FOLIAGE, 32789 },
{ MODE_SNOW, 32790 },
{ MODE_FIREWORK, 32792 },
{ MODE_LONG_SHUTTER, 32774 },
{ MODE_STITCH, 33292 },
{ MODE_VIDEO_STD, 2614 },
}

Definiert in Zeile 96 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 27 der Datei shooting.c.