/*\r
LUFA Library\r
- Copyright (C) Dean Camera, 2009.\r
+ Copyright (C) Dean Camera, 2010.\r
\r
dean [at] fourwalledcubicle [dot] com\r
www.fourwalledcubicle.com\r
*/\r
\r
/*\r
- Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
+ Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
\r
Permission to use, copy, modify, distribute, and sell this \r
software and its documentation for any purpose is hereby granted\r
int main(void)\r
{\r
SetupHardware();\r
-\r
- V2Params_LoadNonVolatileParamValues();\r
\r
LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);\r
\r
/* Hardware Initialization */\r
LEDs_Init();\r
USB_Init();\r
-\r
- #if defined(ADC)\r
- /* Initialize the ADC converter for VTARGET level detection on supported AVR models */\r
- ADC_Init(ADC_FREE_RUNNING | ADC_PRESCALE_128);\r
- ADC_SetupChannel(VTARGET_ADC_CHANNEL);\r
- ADC_StartReading(VTARGET_ADC_CHANNEL | ADC_RIGHT_ADJUSTED | ADC_REFERENCE_AVCC);\r
- #endif\r
- \r
- /* Millisecond timer initialization for managing the command timeout counter */\r
- OCR0A = ((F_CPU / 64) / 1000);\r
- TCCR0A = (1 << WGM01);\r
- TCCR0B = ((1 << CS01) | (1 << CS00));\r
+ V2Protocol_Init();\r
}\r
\r
/** Event handler for the library USB Connection event. */\r