Staging: comedi: Remove lsampl_t and sampl_t typedefs
[deliverable/linux.git] / drivers / staging / comedi / drivers / addi-data / hwdrv_apci1516.h
1 /*
2 * Copyright (C) 2004,2005 ADDI-DATA GmbH for the source code of this module.
3 *
4 * ADDI-DATA GmbH
5 * Dieselstrasse 3
6 * D-77833 Ottersweier
7 * Tel: +19(0)7223/9493-0
8 * Fax: +49(0)7223/9493-92
9 * http://www.addi-data-com
10 * info@addi-data.com
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
15 * any later version.
16 */
17
18 /********* Definitions for APCI-1516 card *****/
19
20 // Card Specific information
21 #define APCI1516_BOARD_VENDOR_ID 0x15B8
22 #define APCI1516_ADDRESS_RANGE 8
23
24 //DIGITAL INPUT-OUTPUT DEFINE
25
26 #define APCI1516_DIGITAL_OP 4
27 #define APCI1516_DIGITAL_OP_RW 4
28 #define APCI1516_DIGITAL_IP 0
29
30 // TIMER COUNTER WATCHDOG DEFINES
31
32 #define ADDIDATA_WATCHDOG 2
33 #define APCI1516_DIGITAL_OP_WATCHDOG 0
34 #define APCI1516_WATCHDOG_ENABLEDISABLE 12
35 #define APCI1516_WATCHDOG_RELOAD_VALUE 4
36 #define APCI1516_WATCHDOG_STATUS 16
37
38 // Hardware Layer functions for Apci1516
39
40 //Digital Input
41 INT i_APCI1516_ReadMoreDigitalInput(comedi_device *dev, comedi_subdevice *s,
42 comedi_insn *insn, unsigned int *data);
43 INT i_APCI1516_Read1DigitalInput(comedi_device *dev, comedi_subdevice *s,
44 comedi_insn *insn, unsigned int *data);
45
46 //Digital Output
47 int i_APCI1516_ConfigDigitalOutput(comedi_device *dev, comedi_subdevice *s,
48 comedi_insn *insn, unsigned int *data);
49 INT i_APCI1516_WriteDigitalOutput(comedi_device *dev, comedi_subdevice *s,
50 comedi_insn *insn, unsigned int *data);
51 INT i_APCI1516_ReadDigitalOutput(comedi_device *dev, comedi_subdevice *s,
52 comedi_insn *insn, unsigned int *data);
53
54 // TIMER
55 // timer value is passed as u seconds
56 int i_APCI1516_ConfigWatchdog(comedi_device *dev, comedi_subdevice *s,
57 comedi_insn *insn, unsigned int *data);
58 int i_APCI1516_StartStopWriteWatchdog(comedi_device *dev, comedi_subdevice *s,
59 comedi_insn *insn, unsigned int *data);
60 int i_APCI1516_ReadWatchdog(comedi_device *dev, comedi_subdevice *s,
61 comedi_insn *insn, unsigned int *data);
62
63 //reset
64 INT i_APCI1516_Reset(comedi_device *dev);
This page took 0.03656 seconds and 6 git commands to generate.