3e83ec2696e3e07a6eda91b1fc7709043382bc20
[pub/USBasp.git] / Demos / Device / ClassDriver / CDC / CDC.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 CDC demo. This file contains the main tasks of
34 * the demo and is responsible for the initial application hardware configuration.
35 */
36
37 #include "CDC.h"
38
39 /** LUFA CDC Class driver interface configuration and state information. This structure is
40 * passed to all CDC 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_CDC_Device_t VirtualSerial_CDC_Interface =
44 {
45 .Config =
46 {
47 .ControlInterfaceNumber = 0,
48
49 .DataINEndpointNumber = CDC_TX_EPNUM,
50 .DataINEndpointSize = CDC_TXRX_EPSIZE,
51
52 .DataOUTEndpointNumber = CDC_RX_EPNUM,
53 .DataOUTEndpointSize = CDC_TXRX_EPSIZE,
54
55 .NotificationEndpointNumber = CDC_NOTIFICATION_EPNUM,
56 .NotificationEndpointSize = CDC_NOTIFICATION_EPSIZE,
57 },
58 };
59
60 /** Main program entry point. This routine contains the overall program flow, including initial
61 * setup of all components and the main program loop.
62 */
63 int main(void)
64 {
65 SetupHardware();
66
67 LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
68
69 for (;;)
70 {
71 CheckJoystickMovement();
72
73 while (CDC_Device_BytesReceived(&VirtualSerial_CDC_Interface))
74 CDC_Device_ReceiveByte(&VirtualSerial_CDC_Interface);
75
76 CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
77 USB_USBTask();
78 }
79 }
80
81 /** Configures the board hardware and chip peripherals for the demo's functionality. */
82 void SetupHardware(void)
83 {
84 /* Disable watchdog if enabled by bootloader/fuses */
85 MCUSR &= ~(1 << WDRF);
86 wdt_disable();
87
88 /* Disable clock division */
89 clock_prescale_set(clock_div_1);
90
91 /* Hardware Initialization */
92 Joystick_Init();
93 LEDs_Init();
94 USB_Init();
95 }
96
97 /** Checks for changes in the position of the board joystick, sending strings to the host upon each change. */
98 void CheckJoystickMovement(void)
99 {
100 uint8_t JoyStatus_LCL = Joystick_GetStatus();
101 char* ReportString = NULL;
102 static bool ActionSent = false;
103
104 char* const JoystickStrings[] =
105 {
106 "Joystick Up\r\n",
107 "Joystick Down\r\n",
108 "Joystick Left\r\n",
109 "Joystick Right\r\n",
110 "Joystick Pressed\r\n",
111 };
112
113 if (JoyStatus_LCL & JOY_UP)
114 ReportString = JoystickStrings[0];
115 else if (JoyStatus_LCL & JOY_DOWN)
116 ReportString = JoystickStrings[1];
117 else if (JoyStatus_LCL & JOY_LEFT)
118 ReportString = JoystickStrings[2];
119 else if (JoyStatus_LCL & JOY_RIGHT)
120 ReportString = JoystickStrings[3];
121 else if (JoyStatus_LCL & JOY_PRESS)
122 ReportString = JoystickStrings[4];
123 else
124 ActionSent = false;
125
126 if ((ReportString != NULL) && (ActionSent == false))
127 {
128 ActionSent = true;
129
130 CDC_Device_SendString(&VirtualSerial_CDC_Interface, ReportString, strlen(ReportString));
131 }
132 }
133
134 /** Event handler for the library USB Connection event. */
135 void EVENT_USB_Connect(void)
136 {
137 LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
138 }
139
140 /** Event handler for the library USB Disconnection event. */
141 void EVENT_USB_Disconnect(void)
142 {
143 LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
144 }
145
146 /** Event handler for the library USB Configuration Changed event. */
147 void EVENT_USB_ConfigurationChanged(void)
148 {
149 LEDs_SetAllLEDs(LEDMASK_USB_READY);
150
151 if (!(CDC_Device_ConfigureEndpoints(&VirtualSerial_CDC_Interface)))
152 LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
153 }
154
155 /** Event handler for the library USB Unhandled Control Packet event. */
156 void EVENT_USB_UnhandledControlPacket(void)
157 {
158 CDC_Device_ProcessControlPacket(&VirtualSerial_CDC_Interface);
159 }