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
 
#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 []
 
const int dof_tbl [] = {6000, 6850, 7490, 8560, 9640, 10700, 12850, 14980, 18190, 22500}
 
const int dof_tbl_size = sizeof(dof_tbl)/sizeof(dof_tbl[0])
 

Makro-Dokumentation

#define PARAM_EXPOSURE_COUNTER   0x02

Definiert in Zeile 2 der Datei shooting.c.

#define PARAM_FILE_COUNTER   0x3A

Definiert in Zeile 1 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 136 der Datei shooting.c.

136  {
137  return get_file_counter();
138 }
long get_target_dir_num ( )

Definiert in Zeile 156 der Datei shooting.c.

156  {
157  long n;
158 
159  n = get_file_next_counter();
160  n = (n>>18)&0x3FF;
161  return n;
162 }
long get_target_file_num ( )

Definiert in Zeile 140 der Datei shooting.c.

140  {
141  long n;
142 
143  n = get_file_next_counter();
144  n = (n>>4)&0x3FFF;
145  return n;
146 }

Variablen-Dokumentation

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

Definiert in Zeile 9 der Datei shooting.c.

const int dof_tbl[] = {6000, 6850, 7490, 8560, 9640, 10700, 12850, 14980, 18190, 22500}

Definiert in Zeile 133 der Datei shooting.c.

const int dof_tbl_size = sizeof(dof_tbl)/sizeof(dof_tbl[0])

Definiert in Zeile 134 der Datei shooting.c.

const ISOTable iso_table[]
Initialisierung:
= {
{ 0, 0, "Auto", -1},
{ 1, 80, "80", -1},
{ 2, 100, "100", -1},
{ 3, 125, "125", -1},
{ 4, 160, "160", -1},
{ 5, 200, "200", -1},
{ 6, 250, "250", -1},
{ 7, 320, "320", -1},
{ 8, 400, "400", -1},
{ 9, 500, "500", -1},
{ 10, 640, "650", -1},
{ 11, 800, "800", -1},
{ 12, 1000, "1000", -1},
{ 13, 1250, "1250", -1},
{ 14, 1600, "1600", -1},
{ 15, 2000, "2000", -1},
{ 16, 2500, "2500", -1},
{ 17, 3200, "3200", -1}
}

Definiert in Zeile 74 der Datei shooting.c.

const CapturemodeMap modemap[]

Definiert in Zeile 95 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 26 der Datei shooting.c.