Altered the Mass Storage Host class driver so that SCSI data STALLs from the attached...
[pub/USBasp.git] / LUFA / Drivers / USB / Core / StdDescriptors.h
index fc79483..f5bacf8 100644 (file)
                        {
                                USB_Descriptor_Header_t Header; /**< Descriptor header, including type and size. */
 
-                               #if ((ARCH == ARCH_AVR8) || (ARCH == ARCH_XMEGA))
+                               #if (((ARCH == ARCH_AVR8) || (ARCH == ARCH_XMEGA)) && !defined(__DOXYGEN__))
                                wchar_t  UnicodeString[];
                                #else
                                uint16_t UnicodeString[]; /**< String data, as unicode characters (alternatively,
                                                           *   Under GCC, strings prefixed with the "L" character (before
                                                           *   the opening string quotation mark) are considered to be
                                                           *   Unicode strings, and may be used instead of an explicit
-                                                          *   array of ASCII characters.
+                                                          *   array of ASCII characters on little endian devices with
+                                                          *   UTF-16-LE \c wchar_t encoding.
                                                           */
                                #endif
                        } ATTR_PACKED USB_Descriptor_String_t;