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   0x38
 
#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   0x38

Definiert in Zeile 1 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 123 der Datei shooting.c.

123  {
124  return get_file_counter();
125 }
long get_target_dir_num ( )

Definiert in Zeile 145 der Datei shooting.c.

145  {
146  long n;
147 
148  n = get_file_next_counter();
149  n = (n>>18)&0x3FF;
150  return n;
151 }
long get_target_file_num ( )

Definiert in Zeile 127 der Datei shooting.c.

127  {
128  long n;
129 
130  n = get_file_next_counter();
131  n = (n>>4)&0x3FFF;
132  return n;
133 }

Variablen-Dokumentation

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

Definiert in Zeile 6 der Datei shooting.c.

const ISOTable iso_table[]
Initialisierung:
= {
{ -1, 1, "HI", -1},
{ 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},
{ 7, 3200, "3200", -1},
}

Definiert in Zeile 71 der Datei shooting.c.

const CapturemodeMap modemap[]

Definiert in Zeile 85 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 19 der Datei shooting.c.