root / firmware / fx2 / include / usrp_ids.h @ 70eae1d2
History | View | Annotate | Download (3 kB)
| 1 |
/* -*- c++ -*- */
|
|---|---|
| 2 |
/*
|
| 3 |
* Copyright 2003,2006,2007 Free Software Foundation, Inc.
|
| 4 |
*
|
| 5 |
* This file is part of GNU Radio
|
| 6 |
*
|
| 7 |
* GNU Radio is free software; you can redistribute it and/or modify
|
| 8 |
* it under the terms of the GNU General Public License as published by
|
| 9 |
* the Free Software Foundation; either version 3, or (at your option)
|
| 10 |
* any later version.
|
| 11 |
*
|
| 12 |
* GNU Radio is distributed in the hope that it will be useful,
|
| 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 15 |
* GNU General Public License for more details.
|
| 16 |
*
|
| 17 |
* You should have received a copy of the GNU General Public License
|
| 18 |
* along with GNU Radio; see the file COPYING. If not, write to
|
| 19 |
* the Free Software Foundation, Inc., 51 Franklin Street,
|
| 20 |
* Boston, MA 02110-1301, USA.
|
| 21 |
*/
|
| 22 |
|
| 23 |
/*
|
| 24 |
* USB Vendor and Product IDs that we use
|
| 25 |
*
|
| 26 |
* (keep in sync with usb_descriptors.a51)
|
| 27 |
*/
|
| 28 |
|
| 29 |
#ifndef _USRP_IDS_H_
|
| 30 |
#define _USRP_IDS_H_
|
| 31 |
|
| 32 |
#define USB_VID_CYPRESS 0x04b4 |
| 33 |
#define USB_PID_CYPRESS_FX2 0x8613 |
| 34 |
|
| 35 |
|
| 36 |
#define USB_VID_FSF 0xfffe // Free Software Folks |
| 37 |
#define USB_PID_FSF_EXP_0 0x0000 // Experimental 0 |
| 38 |
#define USB_PID_FSF_EXP_1 0x0001 // Experimental 1 |
| 39 |
#define USB_PID_FSF_USRP 0x0002 // Universal Software Radio Peripheral |
| 40 |
#define USB_PID_FSF_USRP_reserved 0x0003 // Universal Software Radio Peripheral |
| 41 |
#define USB_PID_FSF_SSRP 0x0004 // Simple Software Radio Peripheral |
| 42 |
#define USB_PID_FSF_SSRP_reserved 0x0005 // Simple Software Radio Peripheral |
| 43 |
#define USB_PID_FSF_HPSDR 0x0006 // High Performance Software Defined Radio (Internal Boot) |
| 44 |
#define USB_PID_FSF_HPSDR_HA 0x0007 // High Performance Software Defined Radio (Host Assisted Boot) |
| 45 |
#define USB_PID_FSF_QS1R 0x0008 // QS1R HF receiver |
| 46 |
#define USB_PID_FSF_EZDOP 0x0009 // ezdop <jcorgan@aeinet.com> |
| 47 |
#define USB_PID_FSF_BDALE_0 0x000a // Bdale Garbee <bdale@gag.com> |
| 48 |
#define USB_PID_FSF_BDALE_1 0x000b // Bdale Garbee <bdale@gag.com> |
| 49 |
#define USB_PID_FSF_BDALE_2 0x000c // Bdale Garbee <bdale@gag.com> |
| 50 |
#define USB_PID_FSF_BDALE_3 0x000d // Bdale Garbee <bdale@gag.com> |
| 51 |
#define USB_PID_FSF_BDALE_4 0x000e // Bdale Garbee <bdale@gag.com> |
| 52 |
#define USB_PID_FSF_BDALE_5 0x000f // Bdale Garbee <bdale@gag.com> |
| 53 |
#define USB_PID_FSF_BDALE_6 0x0010 // Bdale Garbee <bdale@gag.com> |
| 54 |
#define USB_PID_FSF_BDALE_7 0x0011 // Bdale Garbee <bdale@gag.com> |
| 55 |
#define USB_PID_FSF_BDALE_8 0x0012 // Bdale Garbee <bdale@gag.com> |
| 56 |
#define USB_PID_FSF_BDALE_9 0x0013 // Bdale Garbee <bdale@gag.com> |
| 57 |
#define USB_PID_FSF_HPSDR_HERMES 0x0014 // HPSDR Hermes |
| 58 |
#define USB_PID_FSF_THINKRF 0x0015 // Catalin Patulea <catalin.patulea@thinkrf.com> |
| 59 |
#define USB_PID_FSF_MSA 0x0016 // Hans de Bok <hdbok@dionaea.demon.nl> Scotty's Modular Spectrum Analyzer |
| 60 |
|
| 61 |
#define USB_PID_FSF_LBNL_UXO 0x0018 // http://recycle.lbl.gov/~ldoolitt/uxo/ |
| 62 |
|
| 63 |
|
| 64 |
#define USB_DID_USRP_0 0x0000 // unconfigured rev 0 USRP |
| 65 |
#define USB_DID_USRP_1 0x0001 // unconfigured rev 1 USRP |
| 66 |
#define USB_DID_USRP_2 0x0002 // unconfigured rev 2 USRP |
| 67 |
|
| 68 |
#endif /* _USRP_IDS_H_ */ |