Make spi.h inclusion conditional

spi.h is only needed if HEATER_0_USES_MAX6675 is defined, so making its inclusion conditional on HEATER_0_USES_MAX6675 being defined.
This commit is contained in:
benlye 2017-04-15 16:22:42 +01:00 committed by GitHub
parent 1a447d0047
commit 0a2f60fab4

View file

@ -29,7 +29,11 @@
#include "temperature.h"
#include "thermistortables.h"
#include "language.h"
#include "spi.h"
#if ENABLED(HEATER_0_USES_MAX6675)
#include "spi.h"
#endif
#if ENABLED(BABYSTEPPING)
#include "stepper.h"
#endif