unify the usb cable drivers
git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1719 b68d4a1b-bc3d-0410-92ed-d4ac073336b7master
parent
28ce1b7021
commit
6696a91bc6
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* $Id: buses.h 1711 2010-01-23 19:12:01Z vapier $
|
||||
*
|
||||
* Copyright (C) 2003 ETC s.r.o.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
* 02111-1307, USA.
|
||||
*
|
||||
* Written by Marcel Telka <marcel@telka.sk>, 2003.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef URJ_CABLE_USBCONN_H
|
||||
#define URJ_CABLE_USBCONN_H
|
||||
|
||||
#define _URJ_LIST(item) extern urj_usbconn_driver_t urj_tap_usbconn_##item##_driver;
|
||||
#include "usbconn_list.h"
|
||||
|
||||
#endif /* URJ_CABLE_USBCONN_H */
|
@ -0,0 +1,37 @@
|
||||
/*
|
||||
* $Id: buses.h 1687 2009-12-29 23:53:09Z arniml $
|
||||
*
|
||||
* Copyright (C) 2003 ETC s.r.o.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
* 02111-1307, USA.
|
||||
*
|
||||
* Written by Marcel Telka <marcel@telka.sk>, 2003.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_LIBUSB
|
||||
_URJ_LIST(libusb)
|
||||
#endif
|
||||
#ifdef ENABLE_LOWLEVEL_FTD2XX
|
||||
_URJ_LIST(ftd2xx)
|
||||
_URJ_LIST(ftd2xx_mpsse)
|
||||
#endif
|
||||
#ifdef ENABLE_LOWLEVEL_FTDI
|
||||
_URJ_LIST(ftdi)
|
||||
_URJ_LIST(ftdi_mpsse)
|
||||
#endif
|
||||
|
||||
#undef _URJ_LIST
|
Loading…
Reference in New Issue