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 125 der Datei shooting.c.

125  {
126  return get_file_counter();
127 }
void get_target_dir_name ( char *  out)

Definiert in Zeile 140 der Datei shooting.c.

141 {
142  extern void _GetImageFolder(char*,int,int,int);
144 }
long get_target_dir_num ( )

Definiert in Zeile 146 der Datei shooting.c.

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

Definiert in Zeile 129 der Datei shooting.c.

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

Variablen-Dokumentation

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

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

const CapturemodeMap modemap[]

Definiert in Zeile 86 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 25 der Datei shooting.c.