]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/protocol/lufa/LUFA-120730/LUFA/Drivers/Board/UC3/EVK1101/Joystick.h
Merge commit 'a074364c3731d66b56d988c8a6c960a83ea0e0a1' as 'tmk_core'
[qmk_firmware.git] / tmk_core / protocol / lufa / LUFA-120730 / LUFA / Drivers / Board / UC3 / EVK1101 / Joystick.h
1 /*\r
2              LUFA Library\r
3      Copyright (C) Dean Camera, 2012.\r
4 \r
5   dean [at] fourwalledcubicle [dot] com\r
6            www.lufa-lib.org\r
7 */\r
8 \r
9 /*\r
10   Copyright 2012  Dean Camera (dean [at] fourwalledcubicle [dot] com)\r
11 \r
12   Permission to use, copy, modify, distribute, and sell this\r
13   software and its documentation for any purpose is hereby granted\r
14   without fee, provided that the above copyright notice appear in\r
15   all copies and that both that the copyright notice and this\r
16   permission notice and warranty disclaimer appear in supporting\r
17   documentation, and that the name of the author not be used in\r
18   advertising or publicity pertaining to distribution of the\r
19   software without specific, written prior permission.\r
20 \r
21   The author disclaim all warranties with regard to this\r
22   software, including all implied warranties of merchantability\r
23   and fitness.  In no event shall the author be liable for any\r
24   special, indirect or consequential damages or any damages\r
25   whatsoever resulting from loss of use, data or profits, whether\r
26   in an action of contract, negligence or other tortious action,\r
27   arising out of or in connection with the use or performance of\r
28   this software.\r
29 */\r
30 \r
31 /** \file\r
32  *  \brief Board specific joystick driver header for the Atmel EVK1101.\r
33  *  \copydetails Group_Joystick_EVK1101\r
34  *\r
35  *  \note This file should not be included directly. It is automatically included as needed by the joystick driver\r
36  *        dispatch header located in LUFA/Drivers/Board/Joystick.h.\r
37  */\r
38 \r
39 /** \ingroup Group_Joystick\r
40  *  \defgroup Group_Joystick_EVK1101 EVK1101\r
41  *  \brief Board specific joystick driver header for the Atmel EVK1101.\r
42  *\r
43  *  Board specific joystick driver header for the Atmel EVK1101.\r
44  *\r
45  *  <table>\r
46  *    <tr><th>Left Port Pin</th><th>Up Port Pin</th><th>Right Port Pin</th><th>Down Port Pin</th><th>Press Port Pin</th></tr>\r
47  *    <tr><td>GPIO38</td><td>GPIO39</td><td>GPIO41</td><td>GPIO40</td><td>GPIO13</td></tr>\r
48  *  </table>\r
49  *\r
50  *  @{\r
51  */\r
52 \r
53 #ifndef __JOYSTICK_EVK1101_H__\r
54 #define __JOYSTICK_EVK1101_H__\r
55 \r
56         /* Includes: */\r
57                 #include "../../../../Common/Common.h"\r
58 \r
59         /* Enable C linkage for C++ Compilers: */\r
60                 #if defined(__cplusplus)\r
61                         extern "C" {\r
62                 #endif\r
63 \r
64         /* Preprocessor Checks: */\r
65                 #if !defined(__INCLUDE_FROM_JOYSTICK_H)\r
66                         #error Do not include this file directly. Include LUFA/Drivers/Board/Joystick.h instead.\r
67                 #endif\r
68 \r
69         /* Private Interface - For use in library only: */\r
70         #if !defined(__DOXYGEN__)\r
71                 /* Macros: */\r
72                         #define JOY_MOVE_PORT            1\r
73                         #define JOY_MOVE_MASK            ((1UL << 6) | (1UL << 7) | (1UL << 8) | (1UL << 9))\r
74                         #define JOY_PRESS_PORT           0\r
75                         #define JOY_PRESS_MASK           (1UL << 13)\r
76         #endif\r
77 \r
78         /* Public Interface - May be used in end-application: */\r
79                 /* Macros: */\r
80                         /** Mask for the joystick being pushed in the left direction. */\r
81                         #define JOY_LEFT                  (1UL << 6)\r
82 \r
83                         /** Mask for the joystick being pushed in the upward direction. */\r
84                         #define JOY_UP                    (1UL << 7)\r
85 \r
86                         /** Mask for the joystick being pushed in the right direction. */\r
87                         #define JOY_RIGHT                 (1UL << 9)\r
88 \r
89                         /** Mask for the joystick being pushed in the downward direction. */\r
90                         #define JOY_DOWN                  (1UL << 8)\r
91 \r
92                         /** Mask for the joystick being pushed inward. */\r
93                         #define JOY_PRESS                 (1UL << 13)\r
94 \r
95                 /* Inline Functions: */\r
96                 #if !defined(__DOXYGEN__)\r
97                         static inline void Joystick_Init(void)\r
98                         {\r
99                                 AVR32_GPIO.port[JOY_MOVE_PORT].gpers  = JOY_MOVE_MASK;\r
100                                 AVR32_GPIO.port[JOY_PRESS_PORT].gpers = JOY_PRESS_MASK;\r
101 \r
102                                 AVR32_GPIO.port[JOY_MOVE_PORT].puers  = JOY_MOVE_MASK;\r
103                                 AVR32_GPIO.port[JOY_PRESS_PORT].puers = JOY_PRESS_MASK;\r
104                         };\r
105 \r
106                         static inline void Joystick_Disable(void)\r
107                         {\r
108                                 AVR32_GPIO.port[JOY_MOVE_PORT].gperc  = JOY_MOVE_MASK;\r
109                                 AVR32_GPIO.port[JOY_PRESS_PORT].gperc = JOY_PRESS_MASK;\r
110 \r
111                                 AVR32_GPIO.port[JOY_MOVE_PORT].puerc  = JOY_MOVE_MASK;\r
112                                 AVR32_GPIO.port[JOY_PRESS_PORT].puerc = JOY_PRESS_MASK;\r
113                         };\r
114 \r
115                         static inline uint32_t Joystick_GetStatus(void) ATTR_WARN_UNUSED_RESULT;\r
116                         static inline uint32_t Joystick_GetStatus(void)\r
117                         {\r
118                                 return (uint32_t)(~((AVR32_GPIO.port[JOY_MOVE_PORT].pvr  & JOY_MOVE_MASK) |\r
119                                                     (AVR32_GPIO.port[JOY_PRESS_PORT].pvr & JOY_PRESS_MASK)));\r
120                         }\r
121                 #endif\r
122 \r
123         /* Disable C linkage for C++ Compilers: */\r
124                 #if defined(__cplusplus)\r
125                         }\r
126                 #endif\r
127 \r
128 #endif\r
129 \r
130 /** @} */\r
131 \r