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

140  {
141  return get_file_counter();
142 }
void get_target_dir_name ( char *  out)

Definiert in Zeile 154 der Datei shooting.c.

155 {
156  extern void _GetImageFolder(char*,int,int,int);
158 }
long get_target_dir_num ( )

Definiert in Zeile 160 der Datei shooting.c.

160  {
161  long n;
162 
163  n = get_file_next_counter();
164  n = (n>>18)&0x3FF;
165  return n;
166 }
long get_target_file_num ( )

Definiert in Zeile 144 der Datei shooting.c.

144  {
145  long n;
146 
147  n = get_file_next_counter();
148 
149  n = (n>>4)&0x3FFF;
150 
151  return n;
152 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 294, "2.8" },
{ 10, 311, "3.2" },
{ 11, 330, "3.2" },
{ 12, 348, "3.5" },
{ 13, 371, "4.0" },
{ 14, 393, "4.0" },
{ 15, 418, "4.5" },
{ 16, 445, "5.0" },
{ 17, 474, "5.6" },
{ 18, 500, "5.9" },
}

Definiert in Zeile 11 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[]
Initialisierung:
= {
{ MODE_P, 32772 },
{ MODE_AUTO, 32768 },
{ MODE_BEACH, 32791 },
{ MODE_PORTRAIT, 32783 },
{ MODE_KIDS_PETS, 32786 },
{ MODE_SMART_SHUTTER, 33321 },
{ MODE_BEST_IMAGE, 33289 },
{ MODE_NIGHT_SNAPSHOT, 33325 },
{ MODE_LOWLIGHT, 32801 },
{ MODE_FISHEYE, 33323 },
{ MODE_MINIATURE, 33324 },
{ MODE_TOY_CAMERA, 33327 },
{ MODE_MONOCHROME, 33330 },
{ MODE_SUPER_VIVID, 33318 },
{ MODE_POSTER_EFFECT, 33319 },
{ MODE_COLOR_ACCENT, 33309 },
{ MODE_COLOR_SWAP, 33310 },
{ MODE_UNDERWATER, 32793 },
{ MODE_FOLIAGE, 32789 },
{ MODE_SNOW, 32790 },
{ MODE_FIREWORK, 32792 },
{ MODE_LONG_SHUTTER, 32774 },
{ MODE_STITCH, 33292 },
{ MODE_VIDEO_SPEED, 2626 }
}

Definiert in Zeile 88 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 25 der Datei shooting.c.