Make SPI and USART peripheral dispatch driver headers in preparation for a set of...
[pub/USBasp.git] / LUFA / Drivers / Board / LEDs.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2010.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all 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.
20
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
28 this software.
29 */
30
31 /** \file
32 *
33 * This file is the master dispatch header file for the board-specific LED driver, for boards containing user
34 * controllable LEDs.
35 *
36 * User code should include this file, which will in turn include the correct LED driver header file for the
37 * currently selected board.
38 *
39 * If the BOARD value is set to BOARD_USER, this will include the /Board/LEDs.h file in the user project
40 * directory.
41 */
42
43 /** \ingroup Group_BoardDrivers
44 * @defgroup Group_LEDs LEDs Driver - LUFA/Drivers/Board/LEDs.h
45 *
46 * \section Sec_Dependencies Module Source Dependencies
47 * The following files must be built with any user project that uses this module:
48 * - None
49 *
50 * \section Module Description
51 * Hardware LEDs driver. This provides an easy to use driver for the hardware LEDs present on many boards. It
52 * provides an interface to configure, test and change the status of all the board LEDs.
53 *
54 * If the BOARD value is set to BOARD_USER, this will include the /Board/Dataflash.h file in the user project
55 * directory. Otherwise, it will include the appropriate built in board driver header file.
56 *
57 * \note To make code as compatible as possible, it is assumed that all boards carry a minimum of four LEDs. If
58 * a board contains less than four LEDs, the remaining LED masks are defined to 0 so as to have no effect.
59 * If other behaviour is desired, either alias the remaining LED masks to existing LED masks via the -D
60 * switch in the project makefile, or alias them to nothing in the makefile to cause compilation errors when
61 * a non-existing LED is referenced in application code. Note that this means that it is possible to make
62 * compatible code for a board with no LEDs by making a board LED driver (see \ref Page_WritingBoardDrivers)
63 * which contains only stub functions and defines no LEDs.
64 *
65 * @{
66 */
67
68 #ifndef __LEDS_H__
69 #define __LEDS_H__
70
71 /* Macros: */
72 #if !defined(__DOXYGEN__)
73 #define __INCLUDE_FROM_LEDS_H
74 #define INCLUDE_FROM_LEDS_H
75 #endif
76
77 /* Includes: */
78 #include "../../Common/Common.h"
79
80 #if (BOARD == BOARD_NONE)
81 static inline void LEDs_Init(void) {};
82 static inline void LEDs_TurnOnLEDs(const uint8_t LEDMask) {};
83 static inline void LEDs_TurnOffLEDs(const uint8_t LEDMask) {};
84 static inline void LEDs_SetAllLEDs(const uint8_t LEDMask) {};
85 static inline void LEDs_ChangeLEDs(const uint8_t LEDMask, const uint8_t ActiveMask) {};
86 static inline void LEDs_ToggleLEDs(const uint8_t LEDMask) {};
87 static inline uintN_t LEDs_GetLEDs(void) { return 0; }
88 #elif (BOARD == BOARD_USBKEY)
89 #include "USBKEY/LEDs.h"
90 #elif (BOARD == BOARD_STK525)
91 #include "STK525/LEDs.h"
92 #elif (BOARD == BOARD_STK526)
93 #include "STK526/LEDs.h"
94 #elif (BOARD == BOARD_RZUSBSTICK)
95 #include "RZUSBSTICK/LEDs.h"
96 #elif (BOARD == BOARD_ATAVRUSBRF01)
97 #include "ATAVRUSBRF01/LEDs.h"
98 #elif (BOARD == BOARD_XPLAIN)
99 #include "XPLAIN/LEDs.h"
100 #elif (BOARD == BOARD_XPLAIN_REV1)
101 #include "XPLAIN/LEDs.h"
102 #elif (BOARD == BOARD_BUMBLEB)
103 #include "BUMBLEB/LEDs.h"
104 #elif (BOARD == BOARD_EVK527)
105 #include "EVK527/LEDs.h"
106 #elif (BOARD == BOARD_USER)
107 #include "Board/LEDs.h"
108 #elif (BOARD == BOARD_EVK1101)
109 #include "EVK1101/LEDs.h"
110 #endif
111
112 #if !defined(LEDS_LED1)
113 #define LEDS_LED1 0
114 #endif
115
116 #if !defined(LEDS_LED2)
117 #define LEDS_LED2 0
118 #endif
119
120 #if !defined(LEDS_LED3)
121 #define LEDS_LED3 0
122 #endif
123
124 #if !defined(LEDS_LED4)
125 #define LEDS_LED4 0
126 #endif
127
128 /* Pseudo-Functions for Doxygen: */
129 #if defined(__DOXYGEN__)
130 /** Initializes the board LED driver so that the LEDs can be controlled. This sets the appropriate port
131 * I/O pins as outputs, and sets the LEDs to default to off.
132 */
133 static inline void LEDs_Init(void);
134
135 /** Turns on the LEDs specified in the given LED mask.
136 *
137 * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file)
138 */
139 static inline void LEDs_TurnOnLEDs(const uintN_t LEDMask);
140
141 /** Turns off the LEDs specified in the given LED mask.
142 *
143 * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file)
144 */
145 static inline void LEDs_TurnOffLEDs(const uintN_t LEDMask);
146
147 /** Turns off all LEDs not specified in the given LED mask, and turns on all the LEDs in the given LED
148 * mask.
149 *
150 * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file)
151 */
152 static inline void LEDs_SetAllLEDs(const uintN_t LEDMask);
153
154 /** Turns off all LEDs in the LED mask that are not set in the active mask, and turns on all the LEDs
155 * specified in both the LED and active masks.
156 *
157 * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file)
158 * \param[in] ActiveMask Mask of whether the LEDs in the LED mask should be turned on or off
159 */
160 static inline void LEDs_ChangeLEDs(const uintN_t LEDMask, const uintN_t ActiveMask);
161
162 /** Toggles all LEDs in the LED mask, leaving all others in their current states.
163 *
164 * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file)
165 */
166 static inline void LEDs_ToggleLEDs(const uintN_t LEDMask);
167
168 /** Returns the status of all the board LEDs; set LED masks in the return value indicate that the
169 * corresponding LED is on.
170 *
171 * \return Mask of the board LEDs which are currently turned on
172 */
173 static inline uintN_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
174 #endif
175
176 #endif
177
178 /** @} */