/** Total number of Logical Units (drives) in the device. The total device capacity is shared equally between\r
* each drive - this can be set to any positive non-zero amount.\r
*/\r
- #define TOTAL_LUNS 2\r
+ #define TOTAL_LUNS 1\r
\r
/** Blocks in each LUN, calculated from the total capacity divided by the total number of Logical Units in the device. */\r
#define LUN_MEDIA_BLOCKS (VIRTUAL_MEMORY_BLOCKS / TOTAL_LUNS) \r
void SetupHardware(void);\r
void MassStorage_Task(void);\r
\r
- void EVENT_USB_Connect(void);\r
- void EVENT_USB_Disconnect(void);\r
- void EVENT_USB_ConfigurationChanged(void);\r
- void EVENT_USB_UnhandledControlPacket(void);\r
+ void EVENT_USB_Device_Connect(void);\r
+ void EVENT_USB_Device_Disconnect(void);\r
+ void EVENT_USB_Device_ConfigurationChanged(void);\r
+ void EVENT_USB_Device_UnhandledControlRequest(void);\r
\r
#if defined(INCLUDE_FROM_MASSSTORAGE_C)\r
static bool ReadInCommandBlock(void);\r