Fix typos in the Arduino Leonardo board drivers.
This commit is contained in:
		
							parent
							
								
									ebd059d0eb
								
							
						
					
					
						commit
						b7f9beefd8
					
				
					 2 changed files with 10 additions and 10 deletions
				
			
		| 
						 | 
					@ -30,14 +30,14 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** \file
 | 
					/** \file
 | 
				
			||||||
 *  \brief Board specific information header for the Arduino Leonardo board.
 | 
					 *  \brief Board specific information header for the Arduino Leonardo board.
 | 
				
			||||||
 *  \copydetails Group_BoardInfo_LEONDARDO
 | 
					 *  \copydetails Group_BoardInfo_LEONARDO
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 *  \note This file should not be included directly. It is automatically included as needed by the Board driver
 | 
					 *  \note This file should not be included directly. It is automatically included as needed by the Board driver
 | 
				
			||||||
 *        dispatch header located in LUFA/Drivers/Board/Board.h.
 | 
					 *        dispatch header located in LUFA/Drivers/Board/Board.h.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** \ingroup Group_BoardInfo
 | 
					/** \ingroup Group_BoardInfo
 | 
				
			||||||
 *  \defgroup Group_BoardInfo_LEONDARDO LEONDARDO
 | 
					 *  \defgroup Group_BoardInfo_LEONARDO LEONARDO
 | 
				
			||||||
 *  \brief Board specific information header for the Arduino Leonardo board.
 | 
					 *  \brief Board specific information header for the Arduino Leonardo board.
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 *  Board specific information header for the Arduino Leonardo board (http://arduino.cc/en/Main/arduinoBoardLeonardo).
 | 
					 *  Board specific information header for the Arduino Leonardo board (http://arduino.cc/en/Main/arduinoBoardLeonardo).
 | 
				
			||||||
| 
						 | 
					@ -45,8 +45,8 @@
 | 
				
			||||||
 *  @{
 | 
					 *  @{
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef __BOARD_LEONDARDO_H__
 | 
					#ifndef __BOARD_LEONARDO_H__
 | 
				
			||||||
#define __BOARD_LEONDARDO_H__
 | 
					#define __BOARD_LEONARDO_H__
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Includes: */
 | 
						/* Includes: */
 | 
				
			||||||
		#include "../../../../Common/Common.h"
 | 
							#include "../../../../Common/Common.h"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -30,14 +30,14 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** \file
 | 
					/** \file
 | 
				
			||||||
 *  \brief Board specific LED driver header for the Arduino Leonardo board.
 | 
					 *  \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
 | 
					 *  \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.
 | 
					 *        dispatch header located in LUFA/Drivers/Board/LEDs.h.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/** \ingroup Group_LEDs
 | 
					/** \ingroup Group_LEDs
 | 
				
			||||||
 *  \defgroup Group_LEDs_LEONDARDO LEONDARDO
 | 
					 *  \defgroup Group_LEDs_LEONARDO LEONARDO
 | 
				
			||||||
 *  \brief Board specific LED driver header for the Arduino Leonardo board.
 | 
					 *  \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).
 | 
					 *  Board specific LED driver header for the Arduino Leonardo board (http://arduino.cc/en/Main/arduinoBoardLeonardo).
 | 
				
			||||||
| 
						 | 
					@ -52,8 +52,8 @@
 | 
				
			||||||
 *  @{
 | 
					 *  @{
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef __LEDS_LEONDARDO_H__
 | 
					#ifndef __LEDS_LEONARDO_H__
 | 
				
			||||||
#define __LEDS_LEONDARDO_H__
 | 
					#define __LEDS_LEONARDO_H__
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Includes: */
 | 
						/* Includes: */
 | 
				
			||||||
		#include "../../../../Common/Common.h"
 | 
							#include "../../../../Common/Common.h"
 | 
				
			||||||
| 
						 | 
					@ -75,7 +75,7 @@
 | 
				
			||||||
			#define LEDS_PORTD_LEDS       (LEDS_LED2)
 | 
								#define LEDS_PORTD_LEDS       (LEDS_LED2)
 | 
				
			||||||
			#define LEDS_PORTC_LEDS       (LEDS_LED3)
 | 
								#define LEDS_PORTC_LEDS       (LEDS_LED3)
 | 
				
			||||||
	#endif
 | 
						#endif
 | 
				
			||||||
	
 | 
					
 | 
				
			||||||
	/* Public Interface - May be used in end-application: */
 | 
						/* Public Interface - May be used in end-application: */
 | 
				
			||||||
		/* Macros: */
 | 
							/* Macros: */
 | 
				
			||||||
			/** LED mask for the first LED on the board. */
 | 
								/** LED mask for the first LED on the board. */
 | 
				
			||||||
| 
						 | 
					@ -86,7 +86,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			/** LED mask for the third LED on the board. */
 | 
								/** LED mask for the third LED on the board. */
 | 
				
			||||||
			#define LEDS_LED3        (1 << 7)
 | 
								#define LEDS_LED3        (1 << 7)
 | 
				
			||||||
			
 | 
					
 | 
				
			||||||
			/** LED mask for all the LEDs on the board. */
 | 
								/** LED mask for all the LEDs on the board. */
 | 
				
			||||||
			#define LEDS_ALL_LEDS    (LEDS_LED1 | LEDS_LED2 | LEDS_LED3)
 | 
								#define LEDS_ALL_LEDS    (LEDS_LED1 | LEDS_LED2 | LEDS_LED3)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue