3      Copyright (C) Dean Camera, 2009. 
   5   dean [at] fourwalledcubicle [dot] com 
   6       www.fourwalledcubicle.com 
  10   Copyright 2009  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  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. 
  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 TestApp demo. This file contains the main tasks of the demo and 
  34  *  is responsible for the initial application hardware configuration. 
  39 /** Main program entry point. This routine configures the hardware required by the application, then 
  40  *  starts the scheduler to run the application tasks. 
  46         puts_P(PSTR(ESC_RESET ESC_BG_WHITE ESC_INVERSE_ON ESC_ERASE_DISPLAY
 
  47                     "LUFA Demo running.\r\n" ESC_INVERSE_OFF
)); 
  55                 /* Clear output-compare flag (logic 1 clears the flag) */ 
  56                 TIFR0 
|= (1 << OCF0A
); 
  62 void SetupHardware(void) 
  64         /* Disable watchdog if enabled by bootloader/fuses */ 
  65         MCUSR 
&= ~(1 << WDRF
); 
  68         /* Disable clock division */ 
  69         clock_prescale_set(clock_div_1
); 
  71         /* Hardware initialization */ 
  72         SerialStream_Init(9600, false); 
  73         ADC_Init(ADC_SINGLE_CONVERSION 
| ADC_PRESCALE_64
); 
  79         /* Millisecond timer initialization */ 
  81         TCCR0A 
= (1 << WGM01
); 
  82         TCCR0B 
= ((1 << CS01
) | (1 << CS00
)); 
  85 /** Task responsible for checking the joystick position, and displaying the joystick position onto the 
  88 void CheckJoystick(void) 
  90         uint8_t JoyStatus_LCL 
= Joystick_GetStatus(); 
  91         uint8_t LEDMask       
= LEDS_NO_LEDS
; 
  93         if (JoyStatus_LCL 
& JOY_UP
) 
  96         if (JoyStatus_LCL 
& JOY_DOWN
) 
  99         if (JoyStatus_LCL 
& JOY_LEFT
) 
 100           LEDMask 
|= LEDS_LED3
; 
 102         if (JoyStatus_LCL 
& JOY_RIGHT
) 
 103           LEDMask 
|= LEDS_LED4
; 
 105         if (JoyStatus_LCL 
& JOY_PRESS
) 
 106           LEDMask  
= LEDS_ALL_LEDS
; 
 108         LEDs_SetAllLEDs(LEDMask
); 
 111 /** Task responsible for checking the current temperature via the temperature sensor mounted on the 
 112  *  board, and displaying it through the serial USART. 
 114 void CheckTemperature(void) 
 116         static uint16_t MSElapsed 
= 0; 
 118         if (TIFR0 
& (1 << OCF0A
)) 
 121         /* Task runs every 10000 ticks, 10 seconds for this demo */ 
 122         if (MSElapsed 
== 1000) 
 124                 printf_P(PSTR("Current temperature: %d Degrees Celcius\r\n\r\n"), 
 125                          (int8_t)Temperature_GetTemperature()); 
 131 /** Task responsible for checking the board's first button' position, and start-stopping other tasks and the USB 
 132  *  interface in response to user joystick movements. 
 134 void CheckButton(void) 
 136         static uint16_t DebounceMSElapsed 
= 0; 
 137         static bool     IsPressed
; 
 139         if (TIFR0 
& (1 << OCF0A
)) 
 142         if (Buttons_GetStatus() & BUTTONS_BUTTON1
) 
 144                 if (!(IsPressed
) && (DebounceMSElapsed 
== 100)) 
 148                         if (USB_IsInitialized 
== true) 
 151                                 puts_P(PSTR(ESC_BG_WHITE 
"USB Power Off.\r\n")); 
 155                                 puts_P(PSTR(ESC_BG_YELLOW 
"USB Power On.\r\n"));                                 
 156                                 USB_Init(USB_MODE_UID
, USB_DEVICE_OPT_FULLSPEED 
| USB_OPT_REG_ENABLED 
| USB_OPT_AUTO_PLL
); 
 162                 DebounceMSElapsed 
= 0;