From 4a35f927fc1d7b8c3b34f32c1c889fb433752dcc Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 17 Mar 2019 20:41:52 -0400 Subject: initial_pins: Add ability to configure output pins at mcu startup Signed-off-by: Kevin O'Connor --- src/initial_pins.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/initial_pins.c (limited to 'src/initial_pins.c') diff --git a/src/initial_pins.c b/src/initial_pins.c new file mode 100644 index 00000000..cd478508 --- /dev/null +++ b/src/initial_pins.c @@ -0,0 +1,25 @@ +// Support setting gpio pins at mcu start +// +// Copyright (C) 2019 Kevin O'Connor +// +// This file may be distributed under the terms of the GNU GPLv3 license. + +#include "autoconf.h" // CONFIG_INITIAL_PINS +#include "board/gpio.h" // gpio_out_setup +#include "board/pgm.h" // READP +#include "ctr.h" // DECL_CTR +#include "initial_pins.h" // initial_pins +#include "sched.h" // DECL_INIT + +DECL_CTR("DECL_INITIAL_PINS " __stringify(CONFIG_INITIAL_PINS)); + +void +initial_pins_setup(void) +{ + int i; + for (i=0; ipin), READP(ip->flags) & IP_OUT_HIGH); + } +} +DECL_INIT(initial_pins_setup); -- cgit v1.2.3-70-g09d2