altos: Remove ao_led_toggle API from general code
[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 & LEDS_AVAILABLE;
39         AO_PORT_TYPE    off = ~colors & LEDS_AVAILABLE;
40
41         ao_led_off(off);
42         ao_led_on(on);
43 }
44
45 void
46 ao_led_for(AO_PORT_TYPE colors, AO_TICK_TYPE ticks) 
47 {
48         ao_led_on(colors);
49         ao_delay(ticks);
50         ao_led_off(colors);
51 }
52
53 void
54 ao_led_init(void)
55 {
56         ao_enable_port(LED_PORT);
57         if (LED_PORT == 0) {
58                 if (LEDS_AVAILABLE & (1 << 11))
59                         lpc_ioconf.pio0_11 = LPC_IOCONF_FUNC_PIO0_11 | (1 << LPC_IOCONF_ADMODE);
60                 if (LEDS_AVAILABLE & (1 << 12))
61                         lpc_ioconf.pio0_12 = LPC_IOCONF_FUNC_PIO0_12 | (1 << LPC_IOCONF_ADMODE);
62                 if (LEDS_AVAILABLE & (1 << 14))
63                         lpc_ioconf.pio0_14 = LPC_IOCONF_FUNC_PIO0_14 | (1 << LPC_IOCONF_ADMODE);
64         }
65         lpc_gpio.dir[LED_PORT] |= LEDS_AVAILABLE;
66         ao_led_off(LEDS_AVAILABLE);
67 }