Patch compile glitches

This commit is contained in:
Scott Lahteine 2019-10-03 15:37:04 -05:00
parent 6b945eb548
commit c83c2a5022
2 changed files with 3 additions and 2 deletions

View File

@ -63,8 +63,8 @@ typedef uint32_t hal_timer_t;
#define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
#define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
#ifndef HAL_STEP_TIMER_ISR()
#define HAL_STEP_TIMER_ISR() void TC2_Handler()
#ifndef HAL_STEP_TIMER_ISR
#define HAL_STEP_TIMER_ISR() void TC2_Handler()
#endif
#define HAL_TEMP_TIMER_ISR() void TC4_Handler()
#define HAL_TONE_TIMER_ISR() void TC6_Handler()

View File

@ -1425,6 +1425,7 @@ void MarlinUI::update() {
#endif
}
#include "../Marlin.h"
#include "../module/printcounter.h"
static const char print_paused[] PROGMEM = MSG_PRINT_PAUSED;