5fc726c079c50939e4848615165975a8b8777307
[fw/altos] / src / lpc / ao_led_lpc.c
1 /*
2  * Copyright © 2013 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #include <ao.h>
20
21 AO_PORT_TYPE ao_led_enable;
22
23 void
24 ao_led_on(AO_PORT_TYPE colors)
25 {
26         lpc_gpio.pin[LED_PORT] |= colors;
27 }
28
29 void
30 ao_led_off(AO_PORT_TYPE colors)
31 {
32         lpc_gpio.pin[LED_PORT] &= ~colors;
33 }
34
35 void
36 ao_led_set(AO_PORT_TYPE colors)
37 {
38         AO_PORT_TYPE    on = colors & ao_led_enable;
39         AO_PORT_TYPE    off = ~colors & ao_led_enable;
40
41         ao_led_off(off);
42         ao_led_on(on);
43 }
44
45 void
46 ao_led_toggle(AO_PORT_TYPE colors)
47 {
48         lpc_gpio.pin[LED_PORT] ^= colors;
49 }
50
51 void
52 ao_led_for(AO_PORT_TYPE colors, uint16_t ticks) 
53 {
54         ao_led_on(colors);
55         ao_delay(ticks);
56         ao_led_off(colors);
57 }
58
59 void
60 ao_led_init(AO_PORT_TYPE enable)
61 {
62         ao_led_enable = enable;
63         ao_enable_port(LED_PORT);
64         if (LED_PORT == 0) {
65                 if (enable & (1 << 11))
66                         lpc_ioconf.pio0_11 = LPC_IOCONF_FUNC_PIO0_11 | (1 << LPC_IOCONF_ADMODE);
67                 if (enable & (1 << 12))
68                         lpc_ioconf.pio0_12 = LPC_IOCONF_FUNC_PIO0_12 | (1 << LPC_IOCONF_ADMODE);
69                 if (enable & (1 << 14))
70                         lpc_ioconf.pio0_14 = LPC_IOCONF_FUNC_PIO0_14 | (1 << LPC_IOCONF_ADMODE);
71         }
72         lpc_gpio.dir[LED_PORT] |= enable;
73         ao_led_off(enable);
74 }