General cleanup

This commit is contained in:
Scott Lahteine
2020-08-06 00:49:15 -05:00
committed by Scott Lahteine
parent 4201a48ecf
commit e8dc7cad18
8 changed files with 9 additions and 7 deletions

View File

@ -350,7 +350,7 @@ void menu_motion() {
#if ENABLED(ASSISTED_TRAMMING)
GCODES_ITEM(MSG_ASSISTED_TRAMMING, PSTR("G35"));
#endif
//
// Level Bed
//

View File

@ -26,7 +26,7 @@
#include "../../inc/MarlinConfigPre.h"
#if HAS_TRINAMIC_CONFIG && HAS_LCD_MENU
#if HAS_LCD_MENU && HAS_TRINAMIC_CONFIG
#include "menu.h"
#include "../../module/stepper/indirection.h"

View File

@ -22,13 +22,15 @@
#include "../../inc/MarlinConfigPre.h"
#if ENABLED(TOUCH_SCREEN_CALIBRATION)
#if BOTH(HAS_LCD_MENU, TOUCH_SCREEN_CALIBRATION)
#include "menu.h"
#include "../ultralcd.h"
void touch_screen_calibration() {
ui.touch_calibration();
}
#endif // TOUCH_SCREEN_CALIBRATION

View File

@ -74,7 +74,7 @@ constexpr uint8_t epps = ENCODER_PULSES_PER_STEP;
#endif
#endif
#if ENABLED(PCA9632_BUZZER) || USE_BEEPER
#if EITHER(PCA9632_BUZZER, USE_BEEPER)
#include "../libs/buzzer.h" // for BUZZ() macro
#if ENABLED(PCA9632_BUZZER)
#include "../feature/leds/pca9632.h"