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>
This commit is contained in:
Kevin O'Connor
2017-05-13 12:23:54 -04:00
parent 142b92b883
commit d56f8407a5
3 changed files with 100 additions and 91 deletions

View File

@@ -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