]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Debug/led/led.c
Code cleanup
[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 / Kiibohd-dfu
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 // Kiibohd-dfu
71 #elif defined(_mk20dx256vlh7_)
72         // Kiibohd-dfu
73         // Enable pin
74         GPIOA_PDDR |= (1<<5);
75
76         // Setup pin - A5 - See Lib/pin_map.mchck for more details on pins
77         PORTA_PCR5 = PORT_PCR_SRE | PORT_PCR_DSE | PORT_PCR_MUX(1);
78 #endif
79 }
80
81 // Error LED Control
82 inline void errorLED( uint8_t on )
83 {
84 // AVR
85 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
86
87         // Error LED On (D6)
88         if ( on ) {
89                 PORTD |= (1<<6);
90         }
91         // Error LED Off
92         else {
93                 PORTD &= ~(1<<6);
94         }
95
96 // ARM
97 #elif defined(_mk20dx128_) || defined(_mk20dx256_)
98
99         // Error LED On (C5)
100         if ( on ) {
101                 GPIOC_PSOR |= (1<<5);
102         }
103         // Error LED Off
104         else {
105                 GPIOC_PCOR |= (1<<5);
106         }
107
108 // MCHCK
109 #elif defined(_mk20dx128vlf5_)
110
111 /* Actual MCHCK
112         // Error LED On (B16)
113         if ( on ) {
114                 GPIOB_PSOR |= (1<<16);
115         }
116         // Error LED Off
117         else {
118                 GPIOB_PCOR |= (1<<16);
119         }
120 */
121         // Kiibohd MCHCK Variant
122         // Error LED On (A19)
123         if ( on ) {
124                 GPIOA_PSOR |= (1<<19);
125         }
126         // Error LED Off
127         else {
128                 GPIOA_PCOR |= (1<<19);
129         }
130
131 // Kiibohd-dfu
132 #elif defined(_mk20dx256vlh7_)
133         // Kiibohd-dfu
134         // Error LED On (A5)
135         if ( on ) {
136                 GPIOA_PSOR |= (1<<5);
137         }
138         // Error LED Off
139         else {
140                 GPIOA_PCOR |= (1<<5);
141         }
142
143 #endif
144 }
145