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   0x3A
 

Funktionen

long get_file_next_counter ()
 
long get_target_file_num ()
 
long get_target_dir_num ()
 
void get_target_dir_name (char *out)
 

Variablen

const ApertureSize aperture_sizes_table []
 
const ShutterSpeed shutter_speeds_table []
 
const ISOTable iso_table []
 
const CapturemodeMap modemap []
 

Makro-Dokumentation

#define PARAM_FILE_COUNTER   0x3A

Definiert in Zeile 7 der Datei shooting.c.

Dokumentation der Funktionen

long get_file_next_counter ( )

Definiert in Zeile 113 der Datei shooting.c.

113  {
114  return get_file_counter();
115 }
void get_target_dir_name ( char *  out)

Definiert in Zeile 133 der Datei shooting.c.

133  {
134  extern void _GetImageFolder(char*,int,int,int);
136 }
long get_target_dir_num ( )

Definiert in Zeile 125 der Datei shooting.c.

125  {
126  long n;
127 
128  n = get_file_next_counter();
129  n = (n>>18)&0x3FF;
130  return n;
131 }
long get_target_file_num ( )

Definiert in Zeile 117 der Datei shooting.c.

117  {
118  long n;
119 
120  n = get_file_next_counter();
121  n = (n>>4)&0x3FFF;
122  return n;
123 }

Variablen-Dokumentation

const ApertureSize aperture_sizes_table[]
Initialisierung:
= {
{ 9, 387, "3.9" },
{ 10, 399, "3.9" },
{ 11, 431, "4.5" },
{ 12, 439, "5.0" },
{ 13, 575, "8.0" },
{ 14, 600, "9.0" },
{ 15, 618, "10.0" },
}

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

const CapturemodeMap modemap[]
Initialisierung:
= {
{ MODE_LONG_SHUTTER, 16390 },
{ MODE_PORTRAIT, 16401 },
{ MODE_FIREWORK, 16411 },
{ MODE_UNDERWATER, 16412 },
{ MODE_LOWLIGHT, 16421 },
{ MODE_STITCH, 16909 },
{ MODE_COLOR_ACCENT, 16929 },
{ MODE_COLOR_SWAP, 16930 },
{ MODE_SUPER_VIVID, 16938 },
{ MODE_POSTER_EFFECT, 16939 },
{ MODE_SMART_SHUTTER, 16941 },
{ MODE_FISHEYE, 16943 },
{ MODE_MINIATURE, 16944 },
{ MODE_NIGHT_SCENE, 16945 },
{ MODE_TOY_CAMERA, 16947 },
{ MODE_MONOCHROME, 16950 },
{ MODE_AUTO, 32768 },
{ MODE_P, 32772 },
{ MODE_HIGHSPEED_BURST, 32776 },
{ MODE_SNOW, 32793 },
}

Definiert in Zeile 82 der Datei shooting.c.

const ShutterSpeed shutter_speeds_table[]

Definiert in Zeile 21 der Datei shooting.c.