Skip to content

Commit c9c7746

Browse files
Rui Santosgregkh
authored andcommitted
[PATCH] USB: ftdi: Artemis and ATIK based USB astronomical CCD cameras
This patch enables direct kernel support for the Artemis and ATIK astronomical based USB CCD cameras. Since all communications with this camera are done via an FTDI 245BM chip, it was only needed to specify the ProductID and VendorID of all three devices. In what tests are concerned, data was transfered from and to the FTDI at the chips Top speed (360KB/s). Signed-off-by: Rui Santos <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> drivers/usb/serial/ftdi_sio.c | 3 +++ drivers/usb/serial/ftdi_sio.h | 13 +++++++++++++ 2 files changed, 16 insertions(+)
1 parent 72f30b6 commit c9c7746

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

drivers/usb/serial/ftdi_sio.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,9 @@ static struct usb_device_id id_table_combined [] = {
471471
{ USB_DEVICE(FTDI_VID, FTDI_MHAM_Y6_PID) },
472472
{ USB_DEVICE(FTDI_VID, FTDI_MHAM_Y8_PID) },
473473
{ USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
474+
{ USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
475+
{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
476+
{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16HR_PID) },
474477
{ }, /* Optional parameter entry */
475478
{ } /* Terminating entry */
476479
};

drivers/usb/serial/ftdi_sio.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,19 @@
198198
/* an infrared receiver for user access control with IR tags */
199199
#define FTDI_PIEGROUP_PID 0xF208 /* Product Id */
200200

201+
/*
202+
* Definitions for Artemis astronomical USB based cameras
203+
* Check it at http://www.artemisccd.co.uk/
204+
*/
205+
#define FTDI_ARTEMIS_PID 0xDF28 /* All Artemis Cameras */
206+
207+
/*
208+
* Definitions for ATIK Instruments astronomical USB based cameras
209+
* Check it at http://www.atik-instruments.com/
210+
*/
211+
#define FTDI_ATIK_ATK16_PID 0xDF30 /* ATIK ATK-16 Camera */
212+
#define FTDI_ATIK_ATK16HR_PID 0xDF31 /* ATIK ATK-16HR Camera */
213+
201214
/*
202215
* Protego product ids
203216
*/

0 commit comments

Comments
 (0)