Increase timeout of Mass Storage and Still Image host commands to 10 seconds (up from 5) to account for slow-processing devices.
Added brace guards to macros with parameters to prevent unintended changed evaluation of the macro expression. Minor code cleanups (remove redundant comments, fix spacing, etc.).
This commit is contained in:
parent
2281750b5f
commit
7ace314cc1
61 changed files with 133 additions and 122 deletions
|
|
@ -111,7 +111,7 @@
|
|||
#define Dataflash_GetSelectedChip() (DATAFLASH_CHIPCS_PORT & DATAFLASH_CHIPCS_MASK)
|
||||
|
||||
#define Dataflash_SelectChip(mask) MACROS{ DATAFLASH_CHIPCS_PORT = ((DATAFLASH_CHIPCS_PORT \
|
||||
& ~DATAFLASH_CHIPCS_MASK) | mask); }MACROE
|
||||
& ~DATAFLASH_CHIPCS_MASK) | (mask)); }MACROE
|
||||
|
||||
#define Dataflash_DeselectChip() Dataflash_SelectChip(DATAFLASH_NO_CHIP)
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -267,7 +267,7 @@
|
|||
#define COMMAND_DIRECTION_DATA_OUT (0 << 7)
|
||||
#define COMMAND_DIRECTION_DATA_IN (1 << 7)
|
||||
|
||||
#define COMMAND_DATA_TIMEOUT_MS 2000
|
||||
#define COMMAND_DATA_TIMEOUT_MS 10000
|
||||
|
||||
#define MS_FOUND_DATAPIPE_IN (1 << 0)
|
||||
#define MS_FOUND_DATAPIPE_OUT (1 << 1)
|
||||
|
|
|
|||
|
|
@ -230,7 +230,7 @@
|
|||
#define SI_FOUND_DATAPIPE_IN (1 << 1)
|
||||
#define SI_FOUND_DATAPIPE_OUT (1 << 2)
|
||||
|
||||
#define COMMAND_DATA_TIMEOUT_MS 5000
|
||||
#define COMMAND_DATA_TIMEOUT_MS 10000
|
||||
|
||||
/* Function Prototypes: */
|
||||
#if defined(INCLUDE_FROM_SI_CLASS_HOST_C)
|
||||
|
|
|
|||
|
|
@ -82,12 +82,12 @@
|
|||
#endif
|
||||
|
||||
/** Macro to calculate the power value for the device descriptor, from a given number of milliamps. */
|
||||
#define USB_CONFIG_POWER_MA(mA) (mA >> 1)
|
||||
#define USB_CONFIG_POWER_MA(mA) ((mA) >> 1)
|
||||
|
||||
/** Macro to calculate the Unicode length of a string with a given number of Unicode characters.
|
||||
* Should be used in string descriptor's headers for giving the string descriptor's byte length.
|
||||
*/
|
||||
#define USB_STRING_LEN(str) (sizeof(USB_Descriptor_Header_t) + (str << 1))
|
||||
#define USB_STRING_LEN(str) (sizeof(USB_Descriptor_Header_t) + ((str) << 1))
|
||||
|
||||
/** Macro to encode a given four digit floating point version number (e.g. 01.23) into Binary Coded
|
||||
* Decimal format for descriptor fields requiring BCD encoding, such as the USB version number in the
|
||||
|
|
@ -593,10 +593,10 @@
|
|||
/* Private Interface - For use in library only: */
|
||||
#if !defined(__DOXYGEN__)
|
||||
/* Macros: */
|
||||
#define VERSION_TENS(x) (int)(x / 10)
|
||||
#define VERSION_ONES(x) (int)(x - (10 * VERSION_TENS(x)))
|
||||
#define VERSION_TENTHS(x) (int)((x - (int)x) * 10)
|
||||
#define VERSION_HUNDREDTHS(x) (int)(((x - (int)x) * 100) - (10 * VERSION_TENTHS(x)))
|
||||
#define VERSION_TENS(x) (int)((x) / 10)
|
||||
#define VERSION_ONES(x) (int)((x) - (10 * VERSION_TENS(x)))
|
||||
#define VERSION_TENTHS(x) (int)(((x) - (int)(x)) * 10)
|
||||
#define VERSION_HUNDREDTHS(x) (int)((((x) - (int)(x)) * 100) - (10 * VERSION_TENTHS(x)))
|
||||
#endif
|
||||
|
||||
/* Disable C linkage for C++ Compilers: */
|
||||
|
|
|
|||
|
|
@ -175,7 +175,9 @@
|
|||
#endif
|
||||
|
||||
/* Macros: */
|
||||
#define HOST_TASK_NONBLOCK_WAIT(duration, nextstate) MACROS{USB_HostState = HOST_STATE_WaitForDevice; WaitMSRemaining = duration; PostWaitState = nextstate; }MACROE
|
||||
#define HOST_TASK_NONBLOCK_WAIT(duration, nextstate) MACROS{ USB_HostState = HOST_STATE_WaitForDevice; \
|
||||
WaitMSRemaining = (duration); \
|
||||
PostWaitState = (nextstate); }MACROE
|
||||
#endif
|
||||
|
||||
/* Disable C linkage for C++ Compilers: */
|
||||
|
|
|
|||
|
|
@ -353,7 +353,7 @@
|
|||
#if !defined(CONTROL_ONLY_DEVICE)
|
||||
#define Endpoint_SelectEndpoint(epnum) MACROS{ UENUM = (epnum); }MACROE
|
||||
#else
|
||||
#define Endpoint_SelectEndpoint(epnum) (void)epnum
|
||||
#define Endpoint_SelectEndpoint(epnum) (void)(epnum)
|
||||
#endif
|
||||
|
||||
#define Endpoint_ResetFIFO(epnum) MACROS{ UERST = (1 << (epnum)); UERST = 0; }MACROE
|
||||
|
|
|
|||
|
|
@ -53,6 +53,9 @@
|
|||
* - Fixed HID Parser not distributing the Usage Min and Usage Max values across an array of report items
|
||||
* - Fixed Mass Storage Host Class driver and Low Level demo not clearing the error condition if an attached device returns a
|
||||
* STALL to a GET MAX LUN request (thanks to Martin Luxen)
|
||||
* - Fixed TeensyHID bootloader not properly shutting down the USB interface to trigger a disconnection on the host before resetting
|
||||
* - Fixed MassStorageHost Class driver demo not having USB_STREAM_TIMEOUT_MS compile time option set properly to prevent slow
|
||||
* devices from timing out the data pipes
|
||||
*
|
||||
* \section Sec_ChangeLog091122 Version 091122
|
||||
*
|
||||
|
|
|
|||
|
|
@ -26,7 +26,11 @@
|
|||
* -# Write LUFA tutorials
|
||||
* - Demos/Projects
|
||||
* -# Multiple-Report HID device
|
||||
* -# Device/Host bridge
|
||||
* -# Device/Host USB bridge
|
||||
* -# Finish BluetoothHost demo
|
||||
* -# Finish MIDI class Bootloader
|
||||
* -# Finish SideShow demo
|
||||
* -# Finish StandaloneProgrammer project
|
||||
* - Ports
|
||||
* -# AVR32 UC3B series microcontrollers
|
||||
* -# Atmel ARM7 series microcontrollers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue