diff --git a/Demos/DualRole/ClassDriver/MouseHostDevice/HostFunctions.c b/Demos/DualRole/ClassDriver/MouseHostDevice/HostFunctions.c index 341b0d50e73d64f065e883c45660b49b3f8be671..22ebc559aa02aff769e2170e5c974a98d7aa28fa 100644 --- a/Demos/DualRole/ClassDriver/MouseHostDevice/HostFunctions.c +++ b/Demos/DualRole/ClassDriver/MouseHostDevice/HostFunctions.c @@ -142,7 +142,7 @@ void MouseHostTask(void) break; } - if (HID_Host_SetBootProtocol(&Mouse_HID_Host_Interface) != 0) + if (HID_Host_SetBootProtocol(&Mouse_HID_Host_Interface) != HOST_SENDCONTROL_Successful) { printf("Could not Set Boot Protocol Mode.\r\n"); LEDs_SetAllLEDs(LEDMASK_USB_ERROR); diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index 8ce9f2240ee10bdca86fc7c1e3ec4f642830dc85..2840630db6cb1af84083e2144e88a6e3e155d782 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -12,9 +12,8 @@ * - (None) * * <b>Changed:</b> - * - AVRISP programmer project now has a more robust timeout system, allowing for a doubling of the software USART speed + * - AVRISP programmer project now has a more robust timeout system, allowing for an increse of the software USART speed * for PDI and TPI programming - * - Increased the speed of both software and hardware TPI/PDI programming modes of the AVRISP project * - Added a timeout value to the TWI_StartTransmission() function, within which the addressed device must respond * - Webserver project now uses the board LEDs to indicate the current IP configuration state * - Added ENABLE_TELNET_SERVER compile time option to the Webserver project to disable the TELNET server if desired diff --git a/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c b/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c index 15467fe84d3b7bc00fe38800a50b14fd2c372107..bfc2e824d0a13c72ab4ea6d1b5e9437d8d0f4e9a 100644 --- a/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c +++ b/Projects/AVRISP-MKII/Lib/XPROG/XPROGTarget.c @@ -80,10 +80,6 @@ ISR(TIMER1_COMPA_vect, ISR_BLOCK) } else { - /* If not sending or receiving, just exit */ - if (!(SoftUSART_BitCount)) - return; - /* If at falling clock edge and we are in receive mode, abort */ if (!IsSending) return;