fix compile error around new homing logic

This commit is contained in:
Michael Moon 2011-02-20 16:35:22 +11:00
parent c6122eda74
commit 9dc4d54133
2 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,7 @@ PROGBAUD = 57600
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-
CC = $(ARCH)gcc

View File

@ -17,6 +17,7 @@
#include "debug.h"
#include "clock.h"
#include "config.h"
#include "home.h"
// the current tool
uint8_t tool;