3      Copyright (C) Dean Camera, 2010. 
   5   dean [at] fourwalledcubicle [dot] com 
   6       www.fourwalledcubicle.com 
  10   Copyright 2010  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  12   Permission to use, copy, modify, distribute, and sell this  
  13   software and its documentation for any purpose is hereby granted 
  14   without fee, provided that the above copyright notice appear in  
  15   all 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. 
  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 
  33  *  Main source file for the USBtoSerial project. This file contains the main tasks of 
  34  *  the demo and is responsible for the initial application hardware configuration. 
  37 #include "USBtoSerial.h" 
  39 /** Circular buffer to hold data from the host before it is sent to the device via the serial port. */ 
  40 RingBuff_t USBtoUSART_Buffer
; 
  42 /** Circular buffer to hold data from the serial port before it is sent to the host. */ 
  43 RingBuff_t USARTtoUSB_Buffer
; 
  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. 
  49 USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface 
= 
  53                                 .ControlInterfaceNumber         
= 0, 
  55                                 .DataINEndpointNumber           
= CDC_TX_EPNUM
, 
  56                                 .DataINEndpointSize             
= CDC_TXRX_EPSIZE
, 
  57                                 .DataINEndpointDoubleBank       
= false, 
  59                                 .DataOUTEndpointNumber          
= CDC_RX_EPNUM
, 
  60                                 .DataOUTEndpointSize            
= CDC_TXRX_EPSIZE
, 
  61                                 .DataOUTEndpointDoubleBank      
= false, 
  63                                 .NotificationEndpointNumber     
= CDC_NOTIFICATION_EPNUM
, 
  64                                 .NotificationEndpointSize       
= CDC_NOTIFICATION_EPSIZE
, 
  65                                 .NotificationEndpointDoubleBank 
= false, 
  69 /** Main program entry point. This routine contains the overall program flow, including initial 
  70  *  setup of all components and the main program loop. 
  76         RingBuffer_InitBuffer(&USBtoUSART_Buffer
); 
  77         RingBuffer_InitBuffer(&USARTtoUSB_Buffer
); 
  79         LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY
); 
  84                 /* Read bytes from the USB OUT endpoint into the USART transmit buffer */ 
  85                 for (uint8_t DataBytesRem 
= CDC_Device_BytesReceived(&VirtualSerial_CDC_Interface
); DataBytesRem 
!= 0; DataBytesRem
--) 
  87                         if (RingBuffer_IsFull(&USBtoUSART_Buffer
)) 
  90                         RingBuffer_AtomicInsert(&USBtoUSART_Buffer
, CDC_Device_ReceiveByte(&VirtualSerial_CDC_Interface
)); 
  93                 /* Check if the software USART flush timer has expired */ 
  94                 if (TIFR0 
& (1 << TOV0
)) 
  98                         /* Read bytes from the USART receive buffer into the USB IN endpoint */ 
  99                         while (USARTtoUSB_Buffer
.Count
) 
 100                           CDC_Device_SendByte(&VirtualSerial_CDC_Interface
, RingBuffer_AtomicRemove(&USARTtoUSB_Buffer
)); 
 103                 /* Load the next byte from the USART transmit buffer into the USART */ 
 104                 if (USBtoUSART_Buffer
.Count
) 
 105                   Serial_TxByte(RingBuffer_AtomicRemove(&USBtoUSART_Buffer
)); 
 107                 CDC_Device_USBTask(&VirtualSerial_CDC_Interface
); 
 112 /** Configures the board hardware and chip peripherals for the demo's functionality. */ 
 113 void SetupHardware(void) 
 115         /* Disable watchdog if enabled by bootloader/fuses */ 
 116         MCUSR 
&= ~(1 << WDRF
); 
 119         /* Disable clock division */ 
 120         clock_prescale_set(clock_div_1
); 
 122         /* Hardware Initialization */ 
 123         Serial_Init(9600, false); 
 127         /* Start the flush timer so that overflows occur rapidly to push received bytes to the USB interface */ 
 128         TCCR0B 
= (1 << CS02
); 
 131 /** Event handler for the library USB Connection event. */ 
 132 void EVENT_USB_Device_Connect(void) 
 134         LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING
); 
 137 /** Event handler for the library USB Disconnection event. */ 
 138 void EVENT_USB_Device_Disconnect(void) 
 140         LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY
); 
 143 /** Event handler for the library USB Configuration Changed event. */ 
 144 void EVENT_USB_Device_ConfigurationChanged(void) 
 146         LEDs_SetAllLEDs(LEDMASK_USB_READY
); 
 148         if (!(CDC_Device_ConfigureEndpoints(&VirtualSerial_CDC_Interface
))) 
 149           LEDs_SetAllLEDs(LEDMASK_USB_ERROR
); 
 152 /** Event handler for the library USB Unhandled Control Request event. */ 
 153 void EVENT_USB_Device_UnhandledControlRequest(void) 
 155         CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface
); 
 158 /** ISR to manage the reception of data from the serial port, placing received bytes into a circular buffer 
 159  *  for later transmission to the host. 
 161 ISR(USART1_RX_vect
, ISR_BLOCK
) 
 163         uint8_t ReceivedByte 
= UDR1
; 
 165         if (USB_DeviceState 
== DEVICE_STATE_Configured
) 
 166           RingBuffer_Insert(&USARTtoUSB_Buffer
, ReceivedByte
); 
 169 /** Event handler for the CDC Class driver Line Encoding Changed event. 
 171  *  \param[in] CDCInterfaceInfo  Pointer to the CDC class interface configuration structure being referenced 
 173 void EVENT_CDC_Device_LineEncodingChanged(USB_ClassInfo_CDC_Device_t
* const CDCInterfaceInfo
) 
 175         uint8_t ConfigMask 
= 0; 
 177         switch (CDCInterfaceInfo
->State
.LineEncoding
.ParityType
) 
 180                         ConfigMask 
= ((1 << UPM11
) | (1 << UPM10
));              
 182                 case CDC_PARITY_Even
: 
 183                         ConfigMask 
= (1 << UPM11
);               
 187         if (CDCInterfaceInfo
->State
.LineEncoding
.CharFormat 
== CDC_LINEENCODING_TwoStopBits
) 
 188           ConfigMask 
|= (1 << USBS1
); 
 190         switch (CDCInterfaceInfo
->State
.LineEncoding
.DataBits
) 
 193                         ConfigMask 
|= (1 << UCSZ10
); 
 196                         ConfigMask 
|= (1 << UCSZ11
); 
 199                         ConfigMask 
|= ((1 << UCSZ11
) | (1 << UCSZ10
)); 
 203         UCSR1A 
= (1 << U2X1
);    
 204         UCSR1B 
= ((1 << RXCIE1
) | (1 << TXEN1
) | (1 << RXEN1
)); 
 206         UBRR1  
= SERIAL_2X_UBBRVAL(CDCInterfaceInfo
->State
.LineEncoding
.BaudRateBPS
);