Added endian-correction to the CDC driver's Line Encoding control request handlers.
This commit is contained in:
parent
3bb8055459
commit
2ae41fb153
4 changed files with 15 additions and 5 deletions
|
|
@ -210,7 +210,7 @@
|
|||
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue