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   0x3B /* a1200 ok */
 
#define PARAM_EXPOSURE_COUNTER   0x02 /* a1200 ok */
 

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 /* a1200 ok */

Definiert in Zeile 3 der Datei shooting.c.

#define PARAM_FILE_COUNTER   0x3B /* a1200 ok */

Definiert in Zeile 2 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 116 der Datei shooting.c.

116  {
117 
118  return get_file_counter();
119 }
long get_target_dir_num ( )

Definiert in Zeile 137 der Datei shooting.c.

137  {
138 
139  long n;
140 
141  n = get_file_next_counter();
142  n = (n>>18)&0x3FF;
143  return n;
144 }
long get_target_file_num ( )

Definiert in Zeile 121 der Datei shooting.c.

121  {
122 
123  long n;
124 
125  n = get_file_next_counter();
126  n = (n>>4)&0x3FFF;
127  return n;
128 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 295, "2.8" },
{ 10, 319, "3.2" },
{ 11, 338, "3.5" },
{ 12, 366, "3.5" },
{ 13, 393, "4.0" },
{ 14, 423, "4.5" },
{ 15, 456, "5.0" },
{ 16, 501, "5.9" },
{ 17, 572, "8.0" },
{ 18, 596, "9.0" },
{ 19, 615, "10.0" },
{ 20, 643, "10.0" },
{ 21, 670, "11.0" },
{ 22, 700, "13.0" },
{ 22, 733, "14.0" },
{ 23, 778, "17.0" },
}

Definiert in Zeile 7 der Datei shooting.c.

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

Definiert in Zeile 75 der Datei shooting.c.

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_P, 32772 },
{ MODE_LIVE, 33332 },
{ MODE_AUTO, 32768 },
{ MODE_EASY, 33314 },
{ MODE_DISCREET, 32817 },
{ MODE_BLUR_REDUCTION, 16435 },
{ MODE_PORTRAIT, 16399 },
{ MODE_LANDSCAPE, 16398 },
{ MODE_KIDS_PETS, 16402 },
{ MODE_LOWLIGHT, 16417 },
{ MODE_BEACH, 16407 },
{ MODE_FOLIAGE, 16405 },
{ MODE_SNOW, 16406 },
{ MODE_FIREWORK, 16408 },
{ MODE_LONG_SHUTTER, 16390 },
{ MODE_SMART_SHUTTER, 16937 },
{ MODE_FISHEYE, 8747 },
{ MODE_MINIATURE, 8748 },
{ MODE_TOY_CAMERA, 8751 },
{ MODE_MONOCHROME, 8754 },
{ MODE_SUPER_VIVID, 8742 },
{ MODE_POSTER_EFFECT, 8743 },
{ MODE_VIDEO_STD, 2621 },
}

Definiert in Zeile 85 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 27 der Datei shooting.c.