]> sigrok.org Git - libsigrok.git/blob - hardware/zeroplus-logic-cube/gl_usb.h
Start of code base layout restructuring.
[libsigrok.git] / hardware / zeroplus-logic-cube / gl_usb.h
1 /*
2  Copyright (c) 2010 Sven Peter <sven@fail0verflow.com>
3  Copyright (c) 2010 Haxx Enterprises <bushing@gmail.com>
4  All rights reserved.
5
6  Redistribution and use in source and binary forms, with or
7  without modification, are permitted provided that the following
8  conditions are met:
9
10  * Redistributions of source code must retain the above copyright notice,
11    this list of conditions and the following disclaimer.
12
13  * Redistributions in binary form must reproduce the above copyright notice,
14    this list of conditions and the following disclaimer in the documentation
15    and/or other materials provided with the distribution.
16
17   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27   THE POSSIBILITY OF SUCH DAMAGE.
28
29 */
30 #ifndef GL_H__
31 #define GL_G__    1
32 #include <libusb.h>
33
34 #define    GL_OK             0
35 #define    GL_ELIBUSB       -1
36 #define    GL_EOPEN         -2
37 #define    GL_ESETCONFIG    -3
38 #define    GL_ECLAIM        -4
39
40 int gl_write_address(libusb_device_handle *devh, unsigned int address);
41 int gl_write_data(libusb_device_handle *devh, unsigned int val);
42 int gl_read_data(libusb_device_handle *devh);
43 int gl_read_bulk(libusb_device_handle *devh, void *buffer, unsigned int size);
44 int gl_reg_write(libusb_device_handle *devh, unsigned int reg, unsigned int val);
45 int gl_reg_read(libusb_device_handle *devh, unsigned int reg);
46 int gl_open(int vid);
47 int gl_close(void);
48
49 #endif