2 * Copyright © 2014 Bdale Garbee <bdale@gag.com>
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.
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.
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.
26 lpc_scb.sysahbclkctrl |= (1 << LPC_SCB_SYSAHBCLKCTRL_GPIO);
27 lpc_gpio.dir[RELAY_PORT] |= RELAY_BIT;
30 // switch relay to selected output, turn correct LED on as a side effect
32 ao_relay_control(uint8_t output)
36 lpc_gpio.pin[RELAY_PORT] |= RELAY_BIT;
37 ao_led_on(AO_LED_RED);
38 ao_led_off(AO_LED_GREEN);
41 lpc_gpio.pin[RELAY_PORT] &= ~RELAY_BIT;
42 ao_led_off(AO_LED_RED);
43 ao_led_on(AO_LED_GREEN);
52 output = ao_cmd_decimal();
53 if (ao_cmd_status != ao_cmd_success)
56 printf ("Invalid relay position %u\n", output);
58 ao_relay_control(output);
61 static const struct ao_cmds ao_relay_cmds[] = {
62 { ao_relay_select, "R <output>\0Select relay output" },
77 ao_led_init(LEDS_AVAILABLE);
81 // initialize to default output
83 ao_relay_control(relay_output);
87 ao_cmd_register(ao_relay_cmds);