Break device mode class driver interfaces into seperate config and state structs...
[pub/USBasp.git] / Demos / Device / ClassDriver / MassStorage / MassStorage.c
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2009.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /** \file
32 *
33 * Main source file for the MassStorage demo. This file contains the main tasks of
34 * the demo and is responsible for the initial application hardware configuration.
35 */
36
37 #include "MassStorage.h"
38
39 /** LUFA Mass Storage Class driver interface configuration and state information. This structure is
40 * passed to all Mass Storage Class driver functions, so that multiple instances of the same class
41 * within a device can be differentiated from one another.
42 */
43 USB_ClassInfo_MS_Device_t Disk_MS_Interface =
44 {
45 .Config =
46 {
47 .InterfaceNumber = 0,
48
49 .DataINEndpointNumber = MASS_STORAGE_IN_EPNUM,
50 .DataINEndpointSize = MASS_STORAGE_IO_EPSIZE,
51
52 .DataOUTEndpointNumber = MASS_STORAGE_OUT_EPNUM,
53 .DataOUTEndpointSize = MASS_STORAGE_IO_EPSIZE,
54
55 .TotalLUNs = TOTAL_LUNS,
56 },
57
58 .State =
59 {
60 // Leave all state values to their defaults
61 }
62 };
63
64 /** Main program entry point. This routine contains the overall program flow, including initial
65 * setup of all components and the main program loop.
66 */
67 int main(void)
68 {
69 SetupHardware();
70
71 LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
72
73 for (;;)
74 {
75 MS_Device_USBTask(&Disk_MS_Interface);
76 USB_USBTask();
77 }
78 }
79
80 /** Configures the board hardware and chip peripherals for the demo's functionality. */
81 void SetupHardware(void)
82 {
83 /* Disable watchdog if enabled by bootloader/fuses */
84 MCUSR &= ~(1 << WDRF);
85 wdt_disable();
86
87 /* Disable clock division */
88 clock_prescale_set(clock_div_1);
89
90 /* Hardware Initialization */
91 LEDs_Init();
92 Dataflash_Init(SPI_SPEED_FCPU_DIV_2);
93 USB_Init();
94
95 /* Clear Dataflash sector protections, if enabled */
96 DataflashManager_ResetDataflashProtections();
97 }
98
99 /** Event handler for the library USB Connection event. */
100 void EVENT_USB_Connect(void)
101 {
102 LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
103 }
104
105 /** Event handler for the library USB Disconnection event. */
106 void EVENT_USB_Disconnect(void)
107 {
108 LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
109 }
110
111 /** Event handler for the library USB Configuration Changed event. */
112 void EVENT_USB_ConfigurationChanged(void)
113 {
114 LEDs_SetAllLEDs(LEDMASK_USB_READY);
115
116 if (!(MS_Device_ConfigureEndpoints(&Disk_MS_Interface)))
117 LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
118 }
119
120 /** Event handler for the library USB Unhandled Control Packet event. */
121 void EVENT_USB_UnhandledControlPacket(void)
122 {
123 MS_Device_ProcessControlPacket(&Disk_MS_Interface);
124 }
125
126 /** Mass Storage class driver callback function the reception of SCSI commands from the host, which must be processed.
127 *
128 * \param MSInterfaceInfo Pointer to the Mass Storage class interface configuration structure being referenced
129 */
130 bool CALLBACK_MS_Device_SCSICommandReceived(USB_ClassInfo_MS_Device_t* MSInterfaceInfo)
131 {
132 bool CommandSuccess;
133
134 LEDs_SetAllLEDs(LEDMASK_USB_BUSY);
135 CommandSuccess = SCSI_DecodeSCSICommand(MSInterfaceInfo);
136 LEDs_SetAllLEDs(LEDMASK_USB_READY);
137
138 return CommandSuccess;
139 }