]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Debug/led/led.c
Initial MatrixARM implementation
[kiibohd-controller.git] / Debug / led / led.c
1 /* Copyright (C) 2011-2014 by Jacob Alexander
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 // ----- Includes -----
23
24 // Compiler Includes
25 #include <Lib/MainLib.h>
26
27
28 // Project Includes
29 #include "led.h"
30
31
32
33 // ----- Functions -----
34
35 // Error LED Setup
36 inline void init_errorLED()
37 {
38 // AVR
39 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
40
41         // Use pin D6 as an output (LED)
42         DDRD |= (1<<6);
43
44 // ARM
45 #elif defined(_mk20dx128_) || defined(_mk20dx256_)
46
47         // Enable pin
48         GPIOC_PDDR |= (1<<5);
49
50         // Setup pin - Pin 13 -> C5 - See Lib/pin_map.teensy3 for more details on pins
51         PORTC_PCR5 = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1);
52
53 // MCHCK
54 #elif defined(_mk20dx128vlf5_)
55
56 /* Actual MCHCK
57         // Enable pin
58         GPIOB_PDDR |= (1<<16);
59
60         // Setup pin - B16 - See Lib/pin_map.mchck for more details on pins
61         PORTB_PCR16 = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1);
62 */
63         // Kiibohd MCHCK Variant
64         // Enable pin
65         GPIOA_PDDR |= (1<<19);
66
67         // Setup pin - A19 - See Lib/pin_map.mchck for more details on pins
68         PORTA_PCR19 = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1);
69
70 #endif
71 }
72
73 // Error LED Control
74 inline void errorLED( uint8_t on )
75 {
76 // AVR
77 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
78
79         // Error LED On (D6)
80         if ( on ) {
81                 PORTD |= (1<<6);
82         }
83         // Error LED Off
84         else {
85                 PORTD &= ~(1<<6);
86         }
87
88 // ARM
89 #elif defined(_mk20dx128_) || defined(_mk20dx256_)
90
91         // Error LED On (C5)
92         if ( on ) {
93                 GPIOC_PSOR |= (1<<5);
94         }
95         // Error LED Off
96         else {
97                 GPIOC_PCOR |= (1<<5);
98         }
99
100 // MCHCK
101 #elif defined(_mk20dx128vlf5_)
102
103 /* Actual MCHCK
104         // Error LED On (B16)
105         if ( on ) {
106                 GPIOB_PSOR |= (1<<16);
107         }
108         // Error LED Off
109         else {
110                 GPIOB_PCOR |= (1<<16);
111         }
112 */
113         // Kiibohd MCHCK Variant
114         // Error LED On (A19)
115         if ( on ) {
116                 GPIOA_PSOR |= (1<<19);
117         }
118         // Error LED Off
119         else {
120                 GPIOA_PCOR |= (1<<19);
121         }
122
123 #endif
124 }
125