CHDK_DE Vorschauversion  Trunk Rev. 6014
 Alle Datenstrukturen Dateien Funktionen Variablen Typdefinitionen Aufzählungen Aufzählungswerte Makrodefinitionen
shooting.c-Dateireferenz
#include "lolevel.h"
#include "platform.h"
#include "core.h"
#include "conf.h"
#include "keyboard.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 ()
 
void get_target_dir_name (char *out)
 
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 8 der Datei shooting.c.

#define PARAM_FILE_COUNTER   0x3B

Definiert in Zeile 7 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 128 der Datei shooting.c.

128  {
129  return get_file_counter();
130 }
void get_target_dir_name ( char *  out)

Definiert in Zeile 143 der Datei shooting.c.

144 {
145  extern void _GetImageFolder(char*,int,int,int);
147 }
long get_target_dir_num ( )

Definiert in Zeile 149 der Datei shooting.c.

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  long n;
134 
135 
136  n = get_file_next_counter();
137 
138  n = (n>>4)&0x3FFF;
139 
140  return n;
141 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 293, "2.8" },
{ 10, 306, "3.2" },
{ 11, 321, "3.2" },
{ 12, 338, "3.5" },
{ 13, 358, "3.5" },
{ 14, 383, "4.0" },
{ 15, 413, "4.5" },
{ 16, 435, "5.0" },
{ 17, 449, "5.0" },
{ 18, 472, "5.6" },
{ 19, 466, "5.6" },
{ 20, 499, "5.9" },
}

Definiert in Zeile 12 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 78 der Datei shooting.c.

const CapturemodeMap modemap[]

Definiert in Zeile 90 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 27 der Datei shooting.c.