Added endian-correction to the CDC driver's Line Encoding control request handlers.
[pub/lufa.git] / LUFA / Drivers / USB / Core / UC3 / Device_UC3.h
index a4bdab0..a26d7c2 100644 (file)
                        static inline void USB_Device_SetDeviceAddress(const uint8_t Address)
                        {
                                AVR32_USBB.UDCON.uadd  = Address;
-                               AVR32_USBB.UDCON.adden = true;
+                               AVR32_USBB.UDCON.adden = (Address ? true : false);
                        }
 
                        static inline bool USB_Device_IsAddressSet(void) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT;