fix compile error around new homing logic
This commit is contained in:
parent
c6122eda74
commit
9dc4d54133
2
Makefile
2
Makefile
|
|
@ -96,7 +96,7 @@ PROGBAUD = 57600
|
||||||
|
|
||||||
PROGRAM = mendel
|
PROGRAM = mendel
|
||||||
|
|
||||||
SOURCES = $(PROGRAM).c serial.c dda.c gcode_parse.c gcode_process.c timer.c temp.c sermsg.c dda_queue.c watchdog.c debug.c sersendf.c heater.c analog.c delay.c intercom.c pinio.c clock.c
|
SOURCES = $(PROGRAM).c serial.c dda.c gcode_parse.c gcode_process.c timer.c temp.c sermsg.c dda_queue.c watchdog.c debug.c sersendf.c heater.c analog.c delay.c intercom.c pinio.c clock.c home.c
|
||||||
|
|
||||||
ARCH = avr-
|
ARCH = avr-
|
||||||
CC = $(ARCH)gcc
|
CC = $(ARCH)gcc
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "clock.h"
|
#include "clock.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "home.h"
|
||||||
|
|
||||||
// the current tool
|
// the current tool
|
||||||
uint8_t tool;
|
uint8_t tool;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue