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

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 []
 

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 96 der Datei shooting.c.

96  {
97  return get_file_counter();
98 }
long get_target_dir_num ( )

Definiert in Zeile 116 der Datei shooting.c.

116  {
117  long n;
118 
119  n = get_file_next_counter();
120  n = (n>>18)&0x3FF;
121  return n;
122 }
long get_target_file_num ( )

Definiert in Zeile 100 der Datei shooting.c.

100  {
101  long n;
102 
103  n = get_file_next_counter();
104  n = (n>>4)&0x3FFF;
105  return n;
106 }

Variablen-Dokumentation

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

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},
{ 6, 3200, "3200", -1},
}

Definiert in Zeile 69 der Datei shooting.c.

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_AUTO, 32768 },
{ MODE_P, 32772 },
{ MODE_FISHEYE, 33329 },
{ MODE_MINIATURE, 33330 },
{ MODE_TOY_CAMERA, 33333 },
{ MODE_MONOCHROME, 33336 },
}

Definiert in Zeile 81 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 18 der Datei shooting.c.