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

gehe zum Quellcode dieser Datei

Makrodefinitionen

#define PARAM_FILE_COUNTER   0x3A
 

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_FILE_COUNTER   0x3A

Definiert in Zeile 3 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 104 der Datei shooting.c.

104  {
105 
106  return get_file_counter();
107 }
long get_target_dir_num ( )

Definiert in Zeile 125 der Datei shooting.c.

125  {
126 
127  long n;
128 
129  n = get_file_next_counter();
130  n = (n>>18)&0x3FF;
131  return n;
132 }
long get_target_file_num ( )

Definiert in Zeile 109 der Datei shooting.c.

109  {
110 
111  long n;
112 
113  n = get_file_next_counter();
114  n = (n>>4)&0x3FFF;
115  return n;
116 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 293, "2.8" },
{ 10, 307, "3.2" },
{ 11, 344, "3.5" },
{ 12, 388, "4.0" },
{ 13, 413, "4.5" },
{ 14, 443, "5.0" },
{ 15, 476, "5.6" },
{ 16, 500, "5.9" },
{ 17, 1410, "14.1" },
{ 18, 1600, "16.0" },
{ 19, 1800, "18.0" },
{ 20, 2000, "20.1" },
}

Definiert in Zeile 7 der Datei shooting.c.

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

Definiert in Zeile 71 der Datei shooting.c.

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_AUTO, 32768 },
{ MODE_P, 32772 },
{ MODE_LONG_SHUTTER, 32774 },
{ MODE_PORTRAIT, 32785 },
{ MODE_SNOW, 32793 },
{ MODE_FIREWORK, 32795 },
{ MODE_LOWLIGHT, 32805 },
{ MODE_DISCREET, 32821 },
{ MODE_SUPER_VIVID, 33322 },
{ MODE_POSTER_EFFECT, 33323 },
{ MODE_FACE_SELF_TIMER, 33324 },
{ MODE_FISHEYE, 33327 },
{ MODE_MINIATURE, 33328 },
{ MODE_TOY_CAMERA, 33331 },
{ MODE_MONOCHROME, 33334 },
{ MODE_LIVE, 33336 },
}

Definiert in Zeile 82 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 23 der Datei shooting.c.