mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-12-14 09:52:19 +00:00
AVRISP mkII device. (Savannah patch #4789.) * serial.h: Declare usb_serdev_frame device descriptor. * stk500v2.c: Implementation of the AVRISP mkII handling. * usb_libusb.c: Add USB handling for short-frame delimited AVRISP mkII USB protocol; add distinction of different devices in usbdev_open(). * jtagmkII.c: Tell usbdev_open() to search for the JTAG ICE mkII. * usbdevs.h: (New file.) * Makefile.am: Add usbdevs.h, as well as some other forgotten files "make distcheck" complained about. * avrdude.conf.in: Add more aliases for the AVRISP mkII. * avrdude.1: Document how to use the AVRISP mkII. * doc/avrdude.texi: (Ditto.) git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@564 81a1dc3b-b13d-400b-aceb-764788c761c2
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/*
|
|
* 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
|
|
/*
|
|
* 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 */
|