X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/eee252603be67c539f9986cde76454f756e55d95..106f0eee17bbe837c9f94bdcf13d28e2952f1aef:/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h diff --git a/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h b/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h index 04a6626fd..4f1106599 100644 --- a/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h +++ b/LUFA/Drivers/Board/AVR8/LEONARDO/LEDs.h @@ -1,13 +1,13 @@ /* LUFA Library - Copyright (C) Dean Camera, 2012. + Copyright (C) Dean Camera, 2018. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* - Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com) + Copyright 2018 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 @@ -30,14 +30,14 @@ /** \file * \brief Board specific LED driver header for the Arduino Leonardo board. - * \copydetails Group_LEDs_LEONDARDO + * \copydetails Group_LEDs_LEONARDO * * \note This file should not be included directly. It is automatically included as needed by the LEDs driver * dispatch header located in LUFA/Drivers/Board/LEDs.h. */ /** \ingroup Group_LEDs - * \defgroup Group_LEDs_LEONDARDO LEONDARDO + * \defgroup Group_LEDs_LEONARDO LEONARDO * \brief Board specific LED driver header for the Arduino Leonardo board. * * Board specific LED driver header for the Arduino Leonardo board (http://arduino.cc/en/Main/arduinoBoardLeonardo). @@ -46,14 +46,14 @@ * NameColorInfoActive LevelPort Pin * LEDS_LED1YellowRXLowPORTB.0 * LEDS_LED2YellowTXLowPORTD.5 - * LEDS_LED1YellowGeneral IndicatorHighPORTC.7 + * LEDS_LED3YellowGeneral IndicatorHighPORTC.7 * * * @{ */ -#ifndef __LEDS_LEONDARDO_H__ -#define __LEDS_LEONDARDO_H__ +#ifndef __LEDS_LEONARDO_H__ +#define __LEDS_LEONARDO_H__ /* Includes: */ #include "../../../../Common/Common.h" @@ -75,7 +75,7 @@ #define LEDS_PORTD_LEDS (LEDS_LED2) #define LEDS_PORTC_LEDS (LEDS_LED3) #endif - + /* Public Interface - May be used in end-application: */ /* Macros: */ /** LED mask for the first LED on the board. */ @@ -86,7 +86,7 @@ /** LED mask for the third LED on the board. */ #define LEDS_LED3 (1 << 7) - + /** LED mask for all the LEDs on the board. */ #define LEDS_ALL_LEDS (LEDS_LED1 | LEDS_LED2 | LEDS_LED3) @@ -154,7 +154,7 @@ static inline uint8_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT; static inline uint8_t LEDs_GetLEDs(void) { - return ((PORTB & LEDS_PORTB_LEDS) | (PORTD & LEDS_PORTD_LEDS) | (~PORTC & LEDS_PORTC_LEDS)); + return ((~PORTB & LEDS_PORTB_LEDS) | (~PORTD & LEDS_PORTD_LEDS) | (PORTC & LEDS_PORTC_LEDS)); } #endif