Added new USB_DeviceState variable to keep track of the current Device mode USB state.
[pub/USBasp.git] / Demos / Device / ClassDriver / USBtoSerial / USBtoSerial.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 USBtoSerial demo. This file contains the main tasks of
34 * the demo and is responsible for the initial application hardware configuration.
35 */
36
37 #include "USBtoSerial.h"
38
39 /** Circular buffer to hold data from the host before it is sent to the device via the serial port. */
40 RingBuff_t Rx_Buffer;
41
42 /** Circular buffer to hold data from the serial port before it is sent to the host. */
43 RingBuff_t Tx_Buffer;
44
45 /** LUFA CDC Class driver interface configuration and state information. This structure is
46 * passed to all CDC Class driver functions, so that multiple instances of the same class
47 * within a device can be differentiated from one another.
48 */
49 USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface =
50 {
51 .Config =
52 {
53 .ControlInterfaceNumber = 0,
54
55 .DataINEndpointNumber = CDC_TX_EPNUM,
56 .DataINEndpointSize = CDC_TXRX_EPSIZE,
57
58 .DataOUTEndpointNumber = CDC_RX_EPNUM,
59 .DataOUTEndpointSize = CDC_TXRX_EPSIZE,
60
61 .NotificationEndpointNumber = CDC_NOTIFICATION_EPNUM,
62 .NotificationEndpointSize = CDC_NOTIFICATION_EPSIZE,
63 },
64
65 .State =
66 {
67 // Leave all state values to their defaults
68 }
69 };
70
71 /** Main program entry point. This routine contains the overall program flow, including initial
72 * setup of all components and the main program loop.
73 */
74 int main(void)
75 {
76 SetupHardware();
77
78 Buffer_Initialize(&Rx_Buffer);
79 Buffer_Initialize(&Tx_Buffer);
80
81 LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
82
83 for (;;)
84 {
85 /* Read bytes from the USB OUT endpoint into the USART transmit buffer */
86 for (uint8_t DataBytesRem = CDC_Device_BytesReceived(&VirtualSerial_CDC_Interface); DataBytesRem != 0; DataBytesRem--)
87 {
88 if (!(BUFF_STATICSIZE - Rx_Buffer.Elements))
89 break;
90
91 Buffer_StoreElement(&Rx_Buffer, CDC_Device_ReceiveByte(&VirtualSerial_CDC_Interface));
92 }
93
94 /* Read bytes from the USART receive buffer into the USB IN endpoint */
95 if (Tx_Buffer.Elements)
96 CDC_Device_SendByte(&VirtualSerial_CDC_Interface, Buffer_GetElement(&Tx_Buffer));
97
98 /* Read bytes from the USART transmit buffer into the USART */
99 if (Rx_Buffer.Elements)
100 Serial_TxByte(Buffer_GetElement(&Rx_Buffer));
101
102 CDC_Device_USBTask(&VirtualSerial_CDC_Interface);
103 USB_USBTask();
104 }
105 }
106
107 /** Configures the board hardware and chip peripherals for the demo's functionality. */
108 void SetupHardware(void)
109 {
110 /* Disable watchdog if enabled by bootloader/fuses */
111 MCUSR &= ~(1 << WDRF);
112 wdt_disable();
113
114 /* Disable clock division */
115 clock_prescale_set(clock_div_1);
116
117 /* Hardware Initialization */
118 Joystick_Init();
119 LEDs_Init();
120 USB_Init();
121 }
122
123 /** Event handler for the library USB Connection event. */
124 void EVENT_USB_Connect(void)
125 {
126 LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
127 }
128
129 /** Event handler for the library USB Disconnection event. */
130 void EVENT_USB_Disconnect(void)
131 {
132 LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
133 }
134
135 /** Event handler for the library USB Configuration Changed event. */
136 void EVENT_USB_ConfigurationChanged(void)
137 {
138 LEDs_SetAllLEDs(LEDMASK_USB_READY);
139
140 if (!(CDC_Device_ConfigureEndpoints(&VirtualSerial_CDC_Interface)))
141 LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
142 }
143
144 /** Event handler for the library USB Unhandled Control Packet event. */
145 void EVENT_USB_UnhandledControlPacket(void)
146 {
147 CDC_Device_ProcessControlPacket(&VirtualSerial_CDC_Interface);
148 }
149
150 /** ISR to manage the reception of data from the serial port, placing received bytes into a circular buffer
151 * for later transmission to the host.
152 */
153 ISR(USART1_RX_vect, ISR_BLOCK)
154 {
155 if (USB_DeviceState == DEVICE_STATE_Configured)
156 Buffer_StoreElement(&Tx_Buffer, UDR1);
157 }
158
159 /** Event handler for the CDC Class driver Line Encoding Changed event.
160 *
161 * \param[in] CDCInterfaceInfo Pointer to the CDC class interface configuration structure being referenced
162 */
163 void EVENT_CDC_Device_LineEncodingChanged(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo)
164 {
165 uint8_t ConfigMask = 0;
166
167 switch (CDCInterfaceInfo->State.LineEncoding.ParityType)
168 {
169 case CDC_PARITY_Odd:
170 ConfigMask = ((1 << UPM11) | (1 << UPM10));
171 break;
172 case CDC_PARITY_Even:
173 ConfigMask = (1 << UPM11);
174 break;
175 }
176
177 if (CDCInterfaceInfo->State.LineEncoding.CharFormat == CDC_LINEENCODING_TwoStopBits)
178 ConfigMask |= (1 << USBS1);
179
180 switch (CDCInterfaceInfo->State.LineEncoding.DataBits)
181 {
182 case 6:
183 ConfigMask |= (1 << UCSZ10);
184 break;
185 case 7:
186 ConfigMask |= (1 << UCSZ11);
187 break;
188 case 8:
189 ConfigMask |= ((1 << UCSZ11) | (1 << UCSZ10));
190 break;
191 }
192
193 UCSR1A = (1 << U2X1);
194 UCSR1B = ((1 << RXCIE1) | (1 << TXEN1) | (1 << RXEN1));
195 UCSR1C = ConfigMask;
196 UBRR1 = SERIAL_2X_UBBRVAL((uint16_t)CDCInterfaceInfo->State.LineEncoding.BaudRateBPS);
197 }