ARM: get debug.c and crc.c in.
Both used only in special cases, so no binary size change.
This commit is contained in:
parent
b849e28836
commit
cc6600ca76
|
|
@ -100,9 +100,9 @@ TARGET = $(PROGRAM).hex
|
||||||
SOURCES = mendel.c cpu.c serial.c sermsg.c sersendf.c delay.c
|
SOURCES = mendel.c cpu.c serial.c sermsg.c sersendf.c delay.c
|
||||||
SOURCES += gcode_parse.c gcode_process.c pinio.c timer.c clock.c
|
SOURCES += gcode_parse.c gcode_process.c pinio.c timer.c clock.c
|
||||||
SOURCES += dda_queue.c dda_maths.c dda_kinematics.c dda.c dda_lookahead.c
|
SOURCES += dda_queue.c dda_maths.c dda_kinematics.c dda.c dda_lookahead.c
|
||||||
SOURCES += analog.c temp.c heater.c home.c
|
SOURCES += analog.c temp.c heater.c home.c debug.c crc.c
|
||||||
# Sources left:
|
# Sources left:
|
||||||
# crc.c intercom.c debug.c spi.c usb_serial.c
|
# intercom.c spi.c usb_serial.c
|
||||||
# graycode.c pff.c watchdog.c pff_diskio.c
|
# graycode.c pff.c watchdog.c pff_diskio.c
|
||||||
|
|
||||||
ifeq ($(MCU), lpc1114)
|
ifeq ($(MCU), lpc1114)
|
||||||
|
|
|
||||||
2
mendel.c
2
mendel.c
|
|
@ -37,8 +37,8 @@
|
||||||
#include "temp.h"
|
#include "temp.h"
|
||||||
#ifndef __ARMEL_NOTYET__
|
#ifndef __ARMEL_NOTYET__
|
||||||
#include "watchdog.h"
|
#include "watchdog.h"
|
||||||
#include "debug.h"
|
|
||||||
#endif /* __ARMEL_NOTYET__ */
|
#endif /* __ARMEL_NOTYET__ */
|
||||||
|
#include "debug.h"
|
||||||
#include "heater.h"
|
#include "heater.h"
|
||||||
#include "analog.h"
|
#include "analog.h"
|
||||||
#include "pinio.h"
|
#include "pinio.h"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue