From 007c56f4531bcb3057177d9295166717ac583fb9 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Fri, 23 Feb 2018 02:07:34 -0600 Subject: [PATCH] Fix HAL_STM32F1/endstop_interrupts.h In response to https://github.com/MarlinFirmware/Marlin/issues/7076#issuecomment-367556982 --- Marlin/src/HAL/HAL_endstop_interrupts.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Marlin/src/HAL/HAL_endstop_interrupts.h b/Marlin/src/HAL/HAL_endstop_interrupts.h index 5f39e55d78..6a13090ca0 100644 --- a/Marlin/src/HAL/HAL_endstop_interrupts.h +++ b/Marlin/src/HAL/HAL_endstop_interrupts.h @@ -46,6 +46,10 @@ void endstop_ISR(void) { endstop_ISR_worker(); } #include "HAL_TEENSY35_36/endstop_interrupts.h" +#elif defined(__STM32F1__) + + #include "HAL_STM32F1/endstop_interrupts.h" + #elif defined(STM32F7) #include "HAL_STM32F7/endstop_interrupts.h"