diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-05-13 12:23:54 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-05-15 14:02:59 -0400 |
commit | d56f8407a589919d913941d78a7ff7305ae41766 (patch) | |
tree | b0272d205d9142f45530cf3743481935e0b74f80 /src/Makefile | |
parent | 142b92b883b3d7bb3712634fa9c6c004c179c8ff (diff) | |
download | kutter-d56f8407a589919d913941d78a7ff7305ae41766.tar.gz kutter-d56f8407a589919d913941d78a7ff7305ae41766.tar.xz kutter-d56f8407a589919d913941d78a7ff7305ae41766.zip |
debugcmds: Move debugging commands from basecmd.c to new file
Move the implementation of debug commands to their own file.
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 b4a4c33e..b61e8100 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,6 +1,6 @@ # Main code build rules -src-y += sched.c command.c stepper.c basecmd.c gpiocmds.c endstop.c +src-y += sched.c command.c stepper.c basecmd.c debugcmds.c gpiocmds.c endstop.c src-$(CONFIG_HAVE_GPIO_ADC) += adccmds.c src-$(CONFIG_HAVE_GPIO_SPI) += spicmds.c src-$(CONFIG_HAVE_GPIO_HARD_PWM) += pwmcmds.c |