Fix Visual Micro "Arduino IDE for Visual Studio" support (#16418)

This commit is contained in:
Dirk O. Kaar
2020-01-03 02:01:38 +01:00
committed by Scott Lahteine
parent 5b75a018b7
commit d0e1166cce
80 changed files with 81 additions and 85 deletions

View File

@ -25,7 +25,7 @@
#if DISABLED(EMERGENCY_PARSER)
#include "../gcode.h"
#include "../../Marlin.h" // for wait_for_heatup, kill, quickstop_stepper
#include "../../MarlinCore.h" // for wait_for_heatup, kill, quickstop_stepper
/**
* M108: Stop the waiting for heaters in M109, M190, M303. Does not affect the target temperature.

View File

@ -21,7 +21,7 @@
*/
#include "../gcode.h"
#include "../../Marlin.h" // for stepper_inactive_time, disable_e_steppers
#include "../../MarlinCore.h" // for stepper_inactive_time, disable_e_steppers
#include "../../lcd/ultralcd.h"
#include "../../module/stepper.h"

View File

@ -21,7 +21,7 @@
*/
#include "../gcode.h"
#include "../../Marlin.h" // for pin_is_protected and idle()
#include "../../MarlinCore.h" // for pin_is_protected and idle()
#include "../../module/stepper.h"
/**

View File

@ -21,7 +21,7 @@
*/
#include "../gcode.h"
#include "../../Marlin.h" // for pin_is_protected
#include "../../MarlinCore.h" // for pin_is_protected
#include "../../inc/MarlinConfig.h"
#if FAN_COUNT > 0

View File

@ -32,7 +32,7 @@
#endif
#if HAS_SUICIDE
#include "../../Marlin.h"
#include "../../MarlinCore.h"
#endif
#if ENABLED(PSU_CONTROL)

View File

@ -21,7 +21,7 @@
*/
#include "../gcode.h"
#include "../../Marlin.h" // for max_inactive_time
#include "../../MarlinCore.h" // for max_inactive_time
/**
* M85: Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)

View File

@ -23,7 +23,7 @@
#include "../gcode.h"
#include "../../lcd/ultralcd.h" // for lcd_reset_alert_level
#include "../../Marlin.h" // for Running
#include "../../MarlinCore.h" // for Running
#include "../queue.h" // for flush_and_request_resend
/**