aboutsummaryrefslogtreecommitdiff
path: root/lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2017-07-08 12:34:36 -0700
committerskullY <skullydazed@gmail.com>2017-07-08 12:34:36 -0700
commit6e2cae4cda122cfe58dc88dc181632d7b9521740 (patch)
tree89d9fe5e5d91f68d2e015ca8142bb7dcff0a01ad /lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h
parent03706de94621f42a469b0c3c4a4e570dc14666dc (diff)
downloadqmk_firmware-6e2cae4cda122cfe58dc88dc181632d7b9521740.tar.gz
qmk_firmware-6e2cae4cda122cfe58dc88dc181632d7b9521740.zip
commit files with wrong line endings
Diffstat (limited to 'lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h')
-rw-r--r--lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h130
1 files changed, 65 insertions, 65 deletions
diff --git a/lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h b/lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h
index 19a0f2dfe..b0d5ac447 100644
--- a/lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h
+++ b/lib/lufa/LUFA/Drivers/Board/AVR8/QMK/Board.h
@@ -1,65 +1,65 @@
1/* 1/*
2Copyright 2017 Jack Humbert 2Copyright 2017 Jack Humbert
3 3
4This program is free software: you can redistribute it and/or modify 4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by 5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or 6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version. 7(at your option) any later version.
8 8
9This program is distributed in the hope that it will be useful, 9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of 10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details. 12GNU General Public License for more details.
13 13
14You should have received a copy of the GNU General Public License 14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>. 15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/ 16*/
17 17
18/** \file 18/** \file
19 * \brief General driver header for QMK-powered keyboards. 19 * \brief General driver header for QMK-powered keyboards.
20 * \copydetails Group_BoardInfo_QMK 20 * \copydetails Group_BoardInfo_QMK
21 * 21 *
22 * \note This file should not be included directly. It is automatically included as needed by the Board driver 22 * \note This file should not be included directly. It is automatically included as needed by the Board driver
23 * dispatch header located in LUFA/Drivers/Board/Board.h. 23 * dispatch header located in LUFA/Drivers/Board/Board.h.
24 */ 24 */
25 25
26/** \ingroup Group_BoardInfo 26/** \ingroup Group_BoardInfo
27 * \defgroup Group_BoardInfo_QMK QMK 27 * \defgroup Group_BoardInfo_QMK QMK
28 * \brief General driver header for QMK-powered keyboards. 28 * \brief General driver header for QMK-powered keyboards.
29 * 29 *
30 * General driver header for QMK-powered keyboards (http://qmk.fm). 30 * General driver header for QMK-powered keyboards (http://qmk.fm).
31 * 31 *
32 * @{ 32 * @{
33 */ 33 */
34 34
35#ifndef __BOARD_QMK_H__ 35#ifndef __BOARD_QMK_H__
36#define __BOARD_QMK_H__ 36#define __BOARD_QMK_H__
37 37
38 /* Includes: */ 38 /* Includes: */
39 #include "../../../../Common/Common.h" 39 #include "../../../../Common/Common.h"
40 #include "../../LEDs.h" 40 #include "../../LEDs.h"
41 41
42 /* Enable C linkage for C++ Compilers: */ 42 /* Enable C linkage for C++ Compilers: */
43 #if defined(__cplusplus) 43 #if defined(__cplusplus)
44 extern "C" { 44 extern "C" {
45 #endif 45 #endif
46 46
47 /* Preprocessor Checks: */ 47 /* Preprocessor Checks: */
48 #if !defined(__INCLUDE_FROM_BOARD_H) 48 #if !defined(__INCLUDE_FROM_BOARD_H)
49 #error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. 49 #error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead.
50 #endif 50 #endif
51 51
52 /* Public Interface - May be used in end-application: */ 52 /* Public Interface - May be used in end-application: */
53 /* Macros: */ 53 /* Macros: */
54 /** Indicates the board has hardware LEDs mounted. */ 54 /** Indicates the board has hardware LEDs mounted. */
55 #define BOARD_HAS_LEDS 55 #define BOARD_HAS_LEDS
56 56
57 /* Disable C linkage for C++ Compilers: */ 57 /* Disable C linkage for C++ Compilers: */
58 #if defined(__cplusplus) 58 #if defined(__cplusplus)
59 } 59 }
60 #endif 60 #endif
61 61
62#endif 62#endif
63 63
64/** @} */ 64/** @} */
65 65