sr: fx2lafw: Add basic support for USBee DX and clones
This commit is contained in:
parent
0d1297a291
commit
c9166745f2
3
NEWS
3
NEWS
|
@ -2,6 +2,9 @@
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
* TODO
|
* TODO
|
||||||
|
* fx2lafw driver:
|
||||||
|
- Add support for the USBee DX and clones. This requires the latest
|
||||||
|
version of the fx2lafw firmware files.
|
||||||
|
|
||||||
0.1.1 (2012-05-30)
|
0.1.1 (2012-05-30)
|
||||||
------------------
|
------------------
|
||||||
|
|
|
@ -64,6 +64,14 @@ ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", MODE="664", GROUP="plugdev"
|
||||||
# lsusb: "08a9:0014" (no string for the vendor name available)
|
# lsusb: "08a9:0014" (no string for the vendor name available)
|
||||||
ATTRS{idVendor}=="08a9", ATTRS{idProduct}=="0014", MODE="664", GROUP="plugdev"
|
ATTRS{idVendor}=="08a9", ATTRS{idProduct}=="0014", MODE="664", GROUP="plugdev"
|
||||||
|
|
||||||
|
# CWAV USBee DX
|
||||||
|
# http://www.usbee.com/dx.html
|
||||||
|
# lsusb: "08a9:0015" (no string for the vendor name available)
|
||||||
|
#
|
||||||
|
# XZL Studio DX (clone of the CWAV USBee DX)
|
||||||
|
# lsusb: "08a9:0015" (no string for the vendor name available)
|
||||||
|
ATTRS{idVendor}=="08a9", ATTRS{idProduct}=="0015", MODE="664", GROUP="plugdev"
|
||||||
|
|
||||||
# CWAV USBee SX
|
# CWAV USBee SX
|
||||||
# http://www.usbee.com/sx.html
|
# http://www.usbee.com/sx.html
|
||||||
# lsusb: "08a9:0009" (no string for the vendor name available)
|
# lsusb: "08a9:0009" (no string for the vendor name available)
|
||||||
|
|
|
@ -30,6 +30,13 @@
|
||||||
#include "command.h"
|
#include "command.h"
|
||||||
|
|
||||||
static const struct fx2lafw_profile supported_fx2[] = {
|
static const struct fx2lafw_profile supported_fx2[] = {
|
||||||
|
/*
|
||||||
|
* CWAV USBee DX
|
||||||
|
* XZL Studio DX
|
||||||
|
*/
|
||||||
|
{ 0x08a9, 0x0015, "CWAV", "USBee DX", NULL,
|
||||||
|
FIRMWARE_DIR "/fx2lafw-cwav-usbeedx.fw",
|
||||||
|
0 },
|
||||||
/*
|
/*
|
||||||
* CWAV USBee AX
|
* CWAV USBee AX
|
||||||
* EE Electronics ESLA201A
|
* EE Electronics ESLA201A
|
||||||
|
|
Loading…
Reference in New Issue