-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArtVidPid.h
93 lines (79 loc) · 3.49 KB
/
ArtVidPid.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
Astronomy USB Appliance - Control Library
Copyright (C) 2009 Martin Burri ([email protected])
This program is free software licensed under LGPL;
you can redistribute it and/or modify it under the terms of
the GNU Lesser General Public License as published by the
Free Software Foundation; either version 3 of the License,
or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/**
* @file AtikVidPid.h
*****************************************************************************
* defines only
*
* Astronomy USB Appliance driver - USB Vid and Pid defines
*
* This is part of the Driver Library of wxAstroCapture
*
* Copyright (C) 2009 Martin Burri ([email protected])
*
*<hr>
*
* @b Project wxAstroCapture<br>
*
* @author M. Burri
* @date 01-Feb-2009
*
*****************************************************************************
*<hr>
* @b Updates
* - dd-mmm-yyyy V. Name: Description
*
*****************************************************************************/
#ifndef _ATIKVIDPID_H_
#define _ATIKVIDPID_H_
// the FTDI Vendor ID
#define FTDI_VENDOR_VID "0403"
#define FTDI_VENDOR_VID_x 0x0403
/*
* Definitions for Artemis astronomical USB based cameras
* Check it at http://www.artemisccd.co.uk/
*/
#define FTDI_ARTEMIS_PID "DF28" /* All Artemis Cameras */
#define FTDI_ARTEMIS_PID_x 0xDF28 /* All Artemis Cameras */
#define FTDI_MINIART_PID "DF34" /* Mini Artemis Cameras */
#define FTDI_MINIART_PID_x 0xDF34 /* Mini Artemis Cameras */
/*
* Definitions for ATIK Instruments astronomical USB based cameras
* Check it at http://www.atik-instruments.com/
*/
#define FTDI_ATIK_ATK16_PID "DF30" /* ATIK ATK-16 Grayscale Camera */
#define FTDI_ATIK_ATK16_PID_x 0xDF30 /* ATIK ATK-16 Grayscale Camera */
#define FTDI_ATIK_ATK16HR_PID "DF31" /* ATIK ATK-16HR Grayscale Camera */
#define FTDI_ATIK_ATK16HR_PID_x 0xDF31 /* ATIK ATK-16HR Grayscale Camera */
#define FTDI_ATIK_ATK16C_PID "DF32" /* ATIK ATK-16C Colour Camera */
#define FTDI_ATIK_ATK16C_PID_x 0xDF32 /* ATIK ATK-16C Colour Camera */
#define FTDI_ATIK_ATK16HRC_PID "DF33" /* ATIK ATK-16HRC Colour Camera */
#define FTDI_ATIK_ATK16HRC_PID_x 0xDF33 /* ATIK ATK-16HRC Colour Camera */
/*
* More definitions for ATIK Instruments astronomical USB based cameras
* newer line of ATIK IC16 cameras
* Check it at http://www.atik-instruments.com/
*/
#define FTDI_ATIK_ATK16IC_PID "DF35" /* ATIK ATK-16IC Grayscale Camera */
#define FTDI_ATIK_ATK16IC_PID_x 0xDF35 /* ATIK ATK-16IC Grayscale Camera */
#define FTDI_ATIK_ATK16ICC_PID "DF36" /* ATIK ATK-16IC-C Colour Camera */
#define FTDI_ATIK_ATK16ICC_PID_x 0xDF36 /* ATIK ATK-16IC-C Colour Camera */
#define FTDI_ATIK_ATK16ICS_PID "DF2C" /* ATIK ATK-16IC-S Grayscale Camera */
#define FTDI_ATIK_ATK16ICS_PID_x 0xDF2C /* ATIK ATK-16IC-S Grayscale Camera */
#define FTDI_ATIK_ATK16ICSC_PID "DF2D" /* ATIK ATK-16IC-S-C Colour Camera */
#define FTDI_ATIK_ATK16ICSC_PID_x 0xDF2D /* ATIK ATK-16IC-S-C Colour Camera */
#endif // _ATIKVIDPID_H_