- * - The "Byte" suffix on the SPI peripheral driver's send and receive routines has been dropped, to make the interface consistant\r
- * between the AVR8 driver and the new AVR32 driver, which supports variable width transfers.\r
+ * - The \ref TWI_StartTransmission() function now takes in a timeout period, expressed in milliseconds, within which the addressed\r
+ * device must respond or the function will abort.\r
+ *\r
+ * <b>Device Mode</b>\r
+ * - The \ref USB_Init() function no longer calls sei() to enable global interrupts, as the user application may need\r
+ * to perform other initialization before it is ready to handle global interrupts. The user application is now responsible\r
+ * for enabling global interrupts before or shortly after calling \ref USB_Init() to ensure that the enumeration process\r
+ * functions correctly.\r
+ * - The USBInterrupt.c USB driver source file has been relocated from LUFA/Drivers/USB/HighLevel/ to LUFA/Drivers/USB/LowLevel.\r
+ * Projects must update their makefile SRC values accordingly.\r
+ *\r
+ * <b>Host Mode</b>\r
+ * - The \ref USB_Init() function no longer calls sei() to enable global interrupts, as the user application may need\r
+ * to perform other initialization before it is ready to handle global interrupts. The user application is now responsible\r
+ * for enabling global interrupts before or shortly after calling \ref USB_Init() to ensure that the enumeration process\r
+ * functions correctly.\r
+ * - The USBInterrupt.c USB driver source file has been relocated from LUFA/Drivers/USB/HighLevel/ to LUFA/Drivers/USB/LowLevel.\r
+ * Projects must update their makefile SRC values accordingly.\r
+ *\r
+ * \section Sec_Migration100219 Migrating from 091223 to 100219\r