Newer AS7 integration binary, with ASF detection fixes and newer image assets.
[pub/USBasp.git] / BuildTests / BoardDriverTest / Board / LEDs.h
index a0346b2..2a34cee 100644 (file)
@@ -1,13 +1,13 @@
 /*
              LUFA Library
-     Copyright (C) Dean Camera, 2012.
+     Copyright (C) Dean Camera, 2015.
 
   dean [at] fourwalledcubicle [dot] com
            www.lufa-lib.org
 */
 
 /*
-  Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com)
+  Copyright 2015  Dean Camera (dean [at] fourwalledcubicle [dot] com)
 
   Permission to use, copy, modify, distribute, and sell this
   software and its documentation for any purpose is hereby granted
@@ -18,7 +18,7 @@
   advertising or publicity pertaining to distribution of the
   software without specific, written prior permission.
 
-  The author disclaim all warranties with regard to this
+  The author disclaims all warranties with regard to this
   software, including all implied warranties of merchantability
   and fitness.  In no event shall the author be liable for any
   special, indirect or consequential damages or any damages
                        #error Do not include this file directly. Include LUFA/Drivers/Board/LEDS.h instead.
                #endif
 
+               #define BOARD_DUMMY_LEDS_IMPLEMENTATION
+
        /* Public Interface - May be used in end-application: */
                /* Macros: */
                        /** LED mask for the first LED on the board. */
                        #define LEDS_LED1        (1 << 0)
-                       
+
                        /** LED mask for the second LED on the board. */
                        #define LEDS_LED2        (1 << 1)
 
                        /** LED mask for the third LED on the board. */
                        #define LEDS_LED3        (1 << 2)
-                       
+
                        /** LED mask for the fourth LED on the board. */
                        #define LEDS_LED4        (1 << 3)
 
                #if !defined(__DOXYGEN__)
                        static inline void LEDs_Init(void)
                        {
-                               
+
                        }
 
                        static inline void LEDs_Disable(void)
                        {
-                               
+
                        }
 
                        static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask)
                        {
-                               
+
                        }
 
                        static inline void LEDs_TurnOffLEDs(const uint8_t LEDMask)
                        {
-                               
+
                        }
 
                        static inline void LEDs_SetAllLEDs(const uint8_t LEDMask)
                        {
-                               
+
                        }
 
                        static inline void LEDs_ChangeLEDs(const uint8_t LEDMask, const uint8_t ActiveMask)
                        {
-                               
+
                        }
 
                        static inline void LEDs_ToggleLEDs(const uint8_t LEDMask)
                        {
-                               
+
                        }
 
                        static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;