2009-02-28 11:43:04 +08:00
|
|
|
/*
|
2015-01-20 16:20:50 +08:00
|
|
|
* Line 6 Linux USB driver
|
2009-02-28 11:43:04 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2008 Markus Grabner (grabner@icg.tugraz.at)
|
|
|
|
*
|
|
|
|
* 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, version 2.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef USBDEFS_H
|
|
|
|
#define USBDEFS_H
|
|
|
|
|
|
|
|
#define USB_INTERVALS_PER_SECOND 1000
|
|
|
|
|
2009-02-28 13:09:55 +08:00
|
|
|
/* device supports settings parameter via USB */
|
2015-01-13 04:42:45 +08:00
|
|
|
#define LINE6_CAP_CONTROL (1 << 0)
|
2009-02-28 13:09:55 +08:00
|
|
|
/* device supports PCM input/output via USB */
|
2015-01-13 04:42:45 +08:00
|
|
|
#define LINE6_CAP_PCM (1 << 1)
|
2010-08-12 07:35:30 +08:00
|
|
|
/* device support hardware monitoring */
|
2015-01-13 04:42:45 +08:00
|
|
|
#define LINE6_CAP_HWMON (1 << 2)
|
2010-08-12 07:35:30 +08:00
|
|
|
|
2011-12-06 06:51:53 +08:00
|
|
|
#define LINE6_FALLBACK_INTERVAL 10
|
|
|
|
#define LINE6_FALLBACK_MAXPACKETSIZE 16
|
2009-02-28 11:43:04 +08:00
|
|
|
|
|
|
|
#endif
|