/* * avrdude - A Downloader/Uploader for AVR device programmers * Copyright (C) 2006 Joerg Wunsch * * 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 */ /* $Id$ */ /* * defines for the USB interface */ #ifndef usbdevs_h #define usbdevs_h #define USB_VENDOR_ATMEL 1003 #define USB_DEVICE_JTAGICEMKII 0x2103 #define USB_DEVICE_AVRISPMKII 0x2104 #define USB_DEVICE_STK600 0x2106 #define USB_DEVICE_AVRDRAGON 0x2107 /* * Should we query the endpoint number and max transfer size from USB? * After all, the JTAG ICE mkII docs document these values. */ #define USBDEV_BULK_EP_WRITE 0x02 #define USBDEV_BULK_EP_READ 0x82 #define USBDEV_MAX_XFER 64 #endif /* usbdevs_h */