]> sigrok.org Git - libsigrok.git/blame - hardware/zeroplus-logic-cube/gl_usb.h
demo: Add missing copyright line.
[libsigrok.git] / hardware / zeroplus-logic-cube / gl_usb.h
CommitLineData
a1bb33af 1/*
fed16f06
UH
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 */
a1bb33af 29
a1bb33af 30#ifndef GL_H__
fed16f06
UH
31#define GL_G__
32
a1bb33af
UH
33#include <libusb.h>
34
fed16f06
UH
35#define GL_OK 0
36#define GL_ELIBUSB -1
37#define GL_EOPEN -2
38#define GL_ESETCONFIG -3
39#define GL_ECLAIM -4
a1bb33af
UH
40
41int gl_write_address(libusb_device_handle *devh, unsigned int address);
42int gl_write_data(libusb_device_handle *devh, unsigned int val);
43int gl_read_data(libusb_device_handle *devh);
44int gl_read_bulk(libusb_device_handle *devh, void *buffer, unsigned int size);
fed16f06
UH
45int gl_reg_write(libusb_device_handle *devh, unsigned int reg,
46 unsigned int val);
a1bb33af
UH
47int gl_reg_read(libusb_device_handle *devh, unsigned int reg);
48int gl_open(int vid);
49int gl_close(void);
50
51#endif