bug #22271 (project avrdude) - disable usb_reset() for Macs (was just FreeBSD)
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@873 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
d1f8ac6638
commit
e984f82979
|
@ -1,3 +1,7 @@
|
|||
2009-10-22 David Hoerl <dhoerl@mac.com>
|
||||
|
||||
* usb_libusb.c: disabled usb_reset for Macs (same as FreeBSD)
|
||||
|
||||
2009-10-12 Michal Ludvig <mludvig@logix.net.nz>
|
||||
|
||||
* main.c: Re-added default to serial port for BusPirate.
|
||||
|
|
|
@ -239,7 +239,7 @@ static void usbdev_close(union filedescriptor *fd)
|
|||
|
||||
(void)usb_release_interface(udev, usb_interface);
|
||||
|
||||
#if !defined(__FreeBSD__)
|
||||
#if !( defined(__FreeBSD__) || ( defined(__APPLE__) && defined(__MACH__) ) )
|
||||
/*
|
||||
* Without this reset, the AVRISP mkII seems to stall the second
|
||||
* time we try to connect to it. This is not necessary on
|
||||
|
|
Loading…
Reference in New Issue