diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-17 20:41:52 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-03-17 20:56:25 -0400 |
commit | 4a35f927fc1d7b8c3b34f32c1c889fb433752dcc (patch) | |
tree | e775cbf7f216996cd2056c6568c5fbc5eac1f3fb /src/Makefile | |
parent | 0af89e4766e5a25abb9d5d9667e2f187c4cec7c1 (diff) | |
download | kutter-4a35f927fc1d7b8c3b34f32c1c889fb433752dcc.tar.gz kutter-4a35f927fc1d7b8c3b34f32c1c889fb433752dcc.tar.xz kutter-4a35f927fc1d7b8c3b34f32c1c889fb433752dcc.zip |
initial_pins: Add ability to configure output pins at mcu startup
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 546dc0a5..c838e911 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,6 +1,6 @@ # Main code build rules -src-y += sched.c command.c basecmd.c debugcmds.c +src-y += sched.c command.c basecmd.c debugcmds.c initial_pins.c src-$(CONFIG_HAVE_GPIO) += gpiocmds.c stepper.c endstop.c src-$(CONFIG_HAVE_GPIO_ADC) += adccmds.c src-$(CONFIG_HAVE_GPIO_SPI) += spicmds.c thermocouple.c |