|
|
|
@ -87,12 +87,14 @@ int main(void)
|
|
|
|
|
/** Configures the board hardware and chip peripherals for the demo's functionality. */
|
|
|
|
|
void SetupHardware(void)
|
|
|
|
|
{
|
|
|
|
|
#if (ARCH == ARCH_AVR8)
|
|
|
|
|
/* Disable watchdog if enabled by bootloader/fuses */
|
|
|
|
|
MCUSR &= ~(1 << WDRF);
|
|
|
|
|
wdt_disable();
|
|
|
|
|
|
|
|
|
|
/* Disable clock division */
|
|
|
|
|
clock_prescale_set(clock_div_1);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Hardware Initialization */
|
|
|
|
|
Serial_Init(9600, false);
|
|
|
|
@ -170,17 +172,17 @@ void EVENT_USB_Host_DeviceEnumerationComplete(void)
|
|
|
|
|
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
VirtualSerial_CDC_Interface.State.LineEncoding.BaudRateBPS = 9600;
|
|
|
|
|
VirtualSerial_CDC_Interface.State.LineEncoding.CharFormat = CDC_LINEENCODING_OneStopBit;
|
|
|
|
|
VirtualSerial_CDC_Interface.State.LineEncoding.ParityType = CDC_PARITY_None;
|
|
|
|
|
VirtualSerial_CDC_Interface.State.LineEncoding.DataBits = 8;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (CDC_Host_SetLineEncoding(&VirtualSerial_CDC_Interface))
|
|
|
|
|
{
|
|
|
|
|
puts_P(PSTR("Error Setting Device Line Encoding.\r\n"));
|
|
|
|
|
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
|
|
|
|
|
return;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
puts_P(PSTR("CDC Device Enumerated.\r\n"));
|
|
|
|
|