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   0x3B
 
#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 2 der Datei shooting.c.

#define PARAM_FILE_COUNTER   0x3B

Definiert in Zeile 1 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 127 der Datei shooting.c.

127  {
128 
129  return get_file_counter();
130 }
long get_target_dir_num ( )

Definiert in Zeile 148 der Datei shooting.c.

148  {
149 
150  long n;
151 
152  n = get_file_next_counter();
153  n = (n>>18)&0x3FF;
154  return n;
155 }
long get_target_file_num ( )

Definiert in Zeile 132 der Datei shooting.c.

132  {
133 
134  long n;
135 
136  n = get_file_next_counter();
137  n = (n>>4)&0x3FFF;
138  return n;
139 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 295, "2.8" },
{ 10, 319, "3.2" },
{ 11, 338, "3.5" },
{ 12, 366, "3.5" },
{ 13, 393, "4.0" },
{ 14, 423, "4.5" },
{ 15, 456, "5.0" },
{ 16, 501, "5.9" },
}

Definiert in Zeile 6 der Datei shooting.c.

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

Definiert in Zeile 68 der Datei shooting.c.

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_P, 32772 },
{ MODE_LIVE, 33332 },
{ MODE_AUTO, 32768 },
{ MODE_EASY, 33314 },
{ MODE_BLUR_REDUCTION, 16435 },
{ MODE_PORTRAIT, 16399 },
{ MODE_LANDSCAPE, 16398 },
{ MODE_KIDS_PETS, 16402 },
{ MODE_SMART_SHUTTER, 16937 },
{ MODE_LOWLIGHT, 16417 },
{ MODE_BEACH, 16407 },
{ MODE_FOLIAGE, 16405 },
{ MODE_SNOW, 16406 },
{ MODE_FIREWORK, 16408 },
{ MODE_LONG_SHUTTER, 16390 },
{ MODE_FISHEYE, 8747 },
{ MODE_MINIATURE, 8748 },
{ MODE_TOY_CAMERA, 8751 },
{ MODE_MONOCHROME, 8754 },
{ MODE_SUPER_VIVID, 8742 },
{ MODE_POSTER_EFFECT, 8743 },
{ MODE_DISCREET, 32817 },
{ MODE_VIDEO_STD, 2621 },
}

Definiert in Zeile 78 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 17 der Datei shooting.c.