Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LEDs.h 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2014.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2014 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaims all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. * \brief LED board hardware driver.
  28. *
  29. * This file is the master dispatch header file for the board-specific LED driver, for boards containing user
  30. * controllable LEDs.
  31. *
  32. * User code should include this file, which will in turn include the correct LED driver header file for the
  33. * currently selected board.
  34. *
  35. * If the \c BOARD value is set to \c BOARD_USER, this will include the \c /Board/LEDs.h file in the user project
  36. * directory.
  37. *
  38. * For possible \c BOARD makefile values, see \ref Group_BoardTypes.
  39. */
  40. /** \ingroup Group_BoardDrivers
  41. * \defgroup Group_LEDs LEDs Driver - LUFA/Drivers/Board/LEDs.h
  42. * \brief LED board hardware driver.
  43. *
  44. * \section Sec_LEDs_Dependencies Module Source Dependencies
  45. * The following files must be built with any user project that uses this module:
  46. * - None
  47. *
  48. * \section Sec_LEDs_ModDescription Module Description
  49. * Hardware LEDs driver. This provides an easy to use driver for the hardware LEDs present on many boards. It
  50. * provides an interface to configure, test and change the status of all the board LEDs.
  51. *
  52. * If the \c BOARD value is set to \c BOARD_USER, this will include the \c /Board/LEDs.h file in the user project
  53. * directory. Otherwise, it will include the appropriate built-in board driver header file. If the BOARD value
  54. * is set to \c BOARD_NONE, this driver is silently disabled.
  55. *
  56. * For possible \c BOARD makefile values, see \ref Group_BoardTypes.
  57. *
  58. * \note To make code as compatible as possible, it is assumed that all boards carry a minimum of four LEDs. If
  59. * a board contains less than four LEDs, the remaining LED masks are defined to 0 so as to have no effect.
  60. * If other behavior is desired, either alias the remaining LED masks to existing LED masks via the -D
  61. * switch in the project makefile, or alias them to nothing in the makefile to cause compilation errors when
  62. * a non-existing LED is referenced in application code. Note that this means that it is possible to make
  63. * compatible code for a board with no LEDs by making a board LED driver (see \ref Page_WritingBoardDrivers)
  64. * which contains only stub functions and defines no LEDs.
  65. *
  66. * \section Sec_LEDs_ExampleUsage Example Usage
  67. * The following snippet is an example of how this module may be used within a typical
  68. * application.
  69. *
  70. * \code
  71. * // Initialize the board LED driver before first use
  72. * LEDs_Init();
  73. *
  74. * // Turn on each of the four LEDs in turn
  75. * LEDs_SetAllLEDs(LEDS_LED1);
  76. * Delay_MS(500);
  77. * LEDs_SetAllLEDs(LEDS_LED2);
  78. * Delay_MS(500);
  79. * LEDs_SetAllLEDs(LEDS_LED3);
  80. * Delay_MS(500);
  81. * LEDs_SetAllLEDs(LEDS_LED4);
  82. * Delay_MS(500);
  83. *
  84. * // Turn on all LEDs
  85. * LEDs_SetAllLEDs(LEDS_ALL_LEDS);
  86. * Delay_MS(1000);
  87. *
  88. * // Turn on LED 1, turn off LED 2, leaving LEDs 3 and 4 in their current state
  89. * LEDs_ChangeLEDs((LEDS_LED1 | LEDS_LED2), LEDS_LED1);
  90. * \endcode
  91. *
  92. * @{
  93. */
  94. #ifndef __LEDS_H__
  95. #define __LEDS_H__
  96. /* Macros: */
  97. #define __INCLUDE_FROM_LEDS_H
  98. /* Includes: */
  99. #include "../../Common/Common.h"
  100. #if (BOARD == BOARD_NONE)
  101. static inline void LEDs_Init(void) {};
  102. static inline void LEDs_Disable(void) {};
  103. static inline void LEDs_TurnOnLEDs(const uint_reg_t LEDMask) {};
  104. static inline void LEDs_TurnOffLEDs(const uint_reg_t LEDMask) {};
  105. static inline void LEDs_SetAllLEDs(const uint_reg_t LEDMask) {};
  106. static inline void LEDs_ChangeLEDs(const uint_reg_t LEDMask, const uint_reg_t ActiveMask) {};
  107. static inline void LEDs_ToggleLEDs(const uint_reg_t LEDMask) {};
  108. static inline uint_reg_t LEDs_GetLEDs(void) { return 0; }
  109. #elif (BOARD == BOARD_USBKEY)
  110. #include "AVR8/USBKEY/LEDs.h"
  111. #elif (BOARD == BOARD_STK525)
  112. #include "AVR8/STK525/LEDs.h"
  113. #elif (BOARD == BOARD_STK526)
  114. #include "AVR8/STK526/LEDs.h"
  115. #elif (BOARD == BOARD_RZUSBSTICK)
  116. #include "AVR8/RZUSBSTICK/LEDs.h"
  117. #elif (BOARD == BOARD_ATAVRUSBRF01)
  118. #include "AVR8/ATAVRUSBRF01/LEDs.h"
  119. #elif ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
  120. #include "AVR8/XPLAIN/LEDs.h"
  121. #elif (BOARD == BOARD_BUMBLEB)
  122. #include "AVR8/BUMBLEB/LEDs.h"
  123. #elif (BOARD == BOARD_EVK527)
  124. #include "AVR8/EVK527/LEDs.h"
  125. #elif ((BOARD == BOARD_TEENSY) || (BOARD == BOARD_TEENSY2))
  126. #include "AVR8/TEENSY/LEDs.h"
  127. #elif (BOARD == BOARD_USBTINYMKII)
  128. #include "AVR8/USBTINYMKII/LEDs.h"
  129. #elif (BOARD == BOARD_BENITO)
  130. #include "AVR8/BENITO/LEDs.h"
  131. #elif (BOARD == BOARD_JMDBU2)
  132. #include "AVR8/JMDBU2/LEDs.h"
  133. #elif (BOARD == BOARD_OLIMEX162)
  134. #include "AVR8/OLIMEX162/LEDs.h"
  135. #elif (BOARD == BOARD_USBFOO)
  136. #include "AVR8/USBFOO/LEDs.h"
  137. #elif (BOARD == BOARD_UDIP)
  138. #include "AVR8/UDIP/LEDs.h"
  139. #elif (BOARD == BOARD_BUI)
  140. #include "AVR8/BUI/LEDs.h"
  141. #elif (BOARD == BOARD_UNO)
  142. #include "AVR8/UNO/LEDs.h"
  143. #elif (BOARD == BOARD_CULV3)
  144. #include "AVR8/CULV3/LEDs.h"
  145. #elif (BOARD == BOARD_BLACKCAT)
  146. #include "AVR8/BLACKCAT/LEDs.h"
  147. #elif (BOARD == BOARD_MAXIMUS)
  148. #include "AVR8/MAXIMUS/LEDs.h"
  149. #elif (BOARD == BOARD_MINIMUS)
  150. #include "AVR8/MINIMUS/LEDs.h"
  151. #elif (BOARD == BOARD_ADAFRUITU4)
  152. #include "AVR8/ADAFRUITU4/LEDs.h"
  153. #elif (BOARD == BOARD_MICROSIN162)
  154. #include "AVR8/MICROSIN162/LEDs.h"
  155. #elif (BOARD == BOARD_SPARKFUN8U2)
  156. #include "AVR8/SPARKFUN8U2/LEDs.h"
  157. #elif (BOARD == BOARD_EVK1101)
  158. #include "UC3/EVK1101/LEDs.h"
  159. #elif (BOARD == BOARD_TUL)
  160. #include "AVR8/TUL/LEDs.h"
  161. #elif (BOARD == BOARD_EVK1100)
  162. #include "UC3/EVK1100/LEDs.h"
  163. #elif (BOARD == BOARD_EVK1104)
  164. #include "UC3/EVK1104/LEDs.h"
  165. #elif (BOARD == BOARD_A3BU_XPLAINED)
  166. #include "XMEGA/A3BU_XPLAINED/LEDs.h"
  167. #elif ((BOARD == BOARD_USB2AX) || (BOARD == BOARD_USB2AX_V3) || (BOARD == BOARD_USB2AX_V31))
  168. #include "AVR8/USB2AX/LEDs.h"
  169. #elif ((BOARD == BOARD_MICROPENDOUS_REV1) || (BOARD == BOARD_MICROPENDOUS_REV2) || \
  170. (BOARD == BOARD_MICROPENDOUS_32U2))
  171. #include "AVR8/MICROPENDOUS/LEDs.h"
  172. #elif (BOARD == BOARD_B1_XPLAINED)
  173. #include "XMEGA/B1_XPLAINED/LEDs.h"
  174. #elif (BOARD == BOARD_MULTIO)
  175. #include "AVR8/MULTIO/LEDs.h"
  176. #elif (BOARD == BOARD_BIGMULTIO)
  177. #include "AVR8/BIGMULTIO/LEDs.h"
  178. #elif (BOARD == BOARD_DUCE)
  179. #include "AVR8/DUCE/LEDs.h"
  180. #elif (BOARD == BOARD_OLIMEX32U4)
  181. #include "AVR8/OLIMEX32U4/LEDs.h"
  182. #elif (BOARD == BOARD_OLIMEXT32U4)
  183. #include "AVR8/OLIMEXT32U4/LEDs.h"
  184. #elif (BOARD == BOARD_OLIMEXISPMK2)
  185. #include "AVR8/OLIMEXISPMK2/LEDs.h"
  186. #elif (BOARD == BOARD_LEONARDO)
  187. #include "AVR8/LEONARDO/LEDs.h"
  188. #elif (BOARD == BOARD_UC3A3_XPLAINED)
  189. #include "UC3/UC3A3_XPLAINED/LEDs.h"
  190. #elif (BOARD == BOARD_STANGE_ISP)
  191. #include "AVR8/STANGE_ISP/LEDs.h"
  192. #elif (BOARD == BOARD_C3_XPLAINED)
  193. #include "XMEGA/C3_XPLAINED/LEDs.h"
  194. #elif (BOARD == BOARD_U2S)
  195. #include "AVR8/U2S/LEDs.h"
  196. #elif (BOARD == BOARD_YUN)
  197. #include "AVR8/YUN/LEDs.h"
  198. #elif (BOARD == BOARD_MICRO)
  199. #include "AVR8/MICRO/LEDs.h"
  200. #else
  201. #include "Board/LEDs.h"
  202. #endif
  203. /* Preprocessor Checks: */
  204. #if !defined(__DOXYGEN__)
  205. #if !defined(LEDS_NO_LEDS)
  206. #define LEDS_NO_LEDS 0
  207. #endif
  208. #if !defined(LEDS_ALL_LEDS)
  209. #define LEDS_ALL_LEDS (LEDS_LED1 | LEDS_LED2 | LEDS_LED3 | LEDS_LED4)
  210. #endif
  211. #if !defined(LEDS_LED1)
  212. #define LEDS_LED1 0
  213. #endif
  214. #if !defined(LEDS_LED2)
  215. #define LEDS_LED2 0
  216. #endif
  217. #if !defined(LEDS_LED3)
  218. #define LEDS_LED3 0
  219. #endif
  220. #if !defined(LEDS_LED4)
  221. #define LEDS_LED4 0
  222. #endif
  223. #endif
  224. /* Pseudo-Functions for Doxygen: */
  225. #if defined(__DOXYGEN__)
  226. /** Initializes the board LED driver so that the LEDs can be controlled. This sets the appropriate port
  227. * I/O pins as outputs, and sets the LEDs to default to off.
  228. *
  229. * This must be called before any LED driver functions are used.
  230. */
  231. static inline void LEDs_Init(void);
  232. /** Disables the board LED driver, releasing the I/O pins back to their default high-impedance input mode. */
  233. static inline void LEDs_Disable(void);
  234. /** Turns on the LEDs specified in the given LED mask.
  235. *
  236. * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file).
  237. */
  238. static inline void LEDs_TurnOnLEDs(const uint_reg_t LEDMask);
  239. /** Turns off the LEDs specified in the given LED mask.
  240. *
  241. * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file).
  242. */
  243. static inline void LEDs_TurnOffLEDs(const uint_reg_t LEDMask);
  244. /** Turns off all LEDs not specified in the given LED mask, and turns on all the LEDs in the given LED
  245. * mask.
  246. *
  247. * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file).
  248. */
  249. static inline void LEDs_SetAllLEDs(const uint_reg_t LEDMask);
  250. /** Turns off all LEDs in the LED mask that are not set in the active mask, and turns on all the LEDs
  251. * specified in both the LED and active masks.
  252. *
  253. * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file).
  254. * \param[in] ActiveMask Mask of whether the LEDs in the LED mask should be turned on or off.
  255. */
  256. static inline void LEDs_ChangeLEDs(const uint_reg_t LEDMask,
  257. const uint_reg_t ActiveMask);
  258. /** Toggles all LEDs in the LED mask, leaving all others in their current states.
  259. *
  260. * \param[in] LEDMask Mask of the board LEDs to manipulate (see board-specific LEDs.h driver file).
  261. */
  262. static inline void LEDs_ToggleLEDs(const uint_reg_t LEDMask);
  263. /** Returns the status of all the board LEDs; set LED masks in the return value indicate that the
  264. * corresponding LED is on.
  265. *
  266. * \return Mask of \c LEDS_LED* constants indicating which of the board LEDs are currently turned on.
  267. */
  268. static inline uint_reg_t LEDs_GetLEDs(void) ATTR_WARN_UNUSED_RESULT;
  269. #endif
  270. #endif
  271. /** @} */