🐛 TM3D fixes and improvements

Co-Authored-By: InsanityAutomation <38436470+InsanityAutomation@users.noreply.github.com>
This commit is contained in:
Scott Lahteine 2021-07-12 22:52:17 -05:00
parent dd8ac689c3
commit bc459a76f4
6 changed files with 22 additions and 13 deletions

View File

@ -67,7 +67,7 @@ extern uint8_t marlin_debug_flags;
// Serial redirection // Serial redirection
// //
// Step 1: Find out what the first serial leaf is // Step 1: Find out what the first serial leaf is
#if BOTH(HAS_MULTI_SERIAL, SERIAL_CATCHALL) #if HAS_MULTI_SERIAL && defined(SERIAL_CATCHALL)
#define _SERIAL_LEAF_1 MYSERIAL #define _SERIAL_LEAF_1 MYSERIAL
#else #else
#define _SERIAL_LEAF_1 MYSERIAL1 #define _SERIAL_LEAF_1 MYSERIAL1

View File

@ -2417,6 +2417,7 @@ void Draw_HomeOff_Menu() {
#include "../../../libs/buzzer.h" #include "../../../libs/buzzer.h"
void HMI_AudioFeedback(const bool success=true) { void HMI_AudioFeedback(const bool success=true) {
#if HAS_BUZZER
if (success) { if (success) {
buzzer.tone(100, 659); buzzer.tone(100, 659);
buzzer.tone(10, 0); buzzer.tone(10, 0);
@ -2424,6 +2425,7 @@ void HMI_AudioFeedback(const bool success=true) {
} }
else else
buzzer.tone(40, 440); buzzer.tone(40, 440);
#endif
} }
/* Prepare */ /* Prepare */

View File

@ -23,7 +23,7 @@
#include "../config.h" #include "../config.h"
#include "../screens.h" #include "../screens.h"
#ifdef COCOA_LEVELING_MENU #if ENABLED(COCOA_LEVELING_MENU)
#if BOTH(HAS_BED_PROBE, BLTOUCH) #if BOTH(HAS_BED_PROBE, BLTOUCH)
#include "../../../../feature/bltouch.h" #include "../../../../feature/bltouch.h"

View File

@ -1057,7 +1057,7 @@ namespace ExtUI {
return isPrinting() && (isPrintingFromMediaPaused() || print_job_timer.isPaused()); return isPrinting() && (isPrintingFromMediaPaused() || print_job_timer.isPaused());
} }
bool isMediaInserted() { return TERN0(SDSUPPORT, IS_SD_INSERTED() && card.isMounted()); } bool isMediaInserted() { return TERN0(SDSUPPORT, IS_SD_INSERTED()); }
void pausePrint() { ui.pause_print(); } void pausePrint() { ui.pause_print(); }
void resumePrint() { ui.resume_print(); } void resumePrint() { ui.resume_print(); }

View File

@ -655,7 +655,9 @@
#define BEEPER_PIN EXP1_10_PIN #define BEEPER_PIN EXP1_10_PIN
#define BTN_ENC EXP1_09_PIN #define BTN_ENC EXP1_09_PIN
#ifndef SD_DETECT_PIN
#define SD_DETECT_PIN EXP2_04_PIN #define SD_DETECT_PIN EXP2_04_PIN
#endif
#ifndef KILL_PIN #ifndef KILL_PIN
#define KILL_PIN EXP2_03_PIN #define KILL_PIN EXP2_03_PIN

View File

@ -172,8 +172,13 @@
// //
// Misc. Functions // Misc. Functions
// //
#define LED_CONTROL_PIN PA13 #define CASE_LIGHT_PIN PA13
#ifndef NEOPIXEL_PIN #ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN PA8 #define NEOPIXEL_PIN PA8
#endif #endif
#define SUICIDE_PIN PC13
#ifndef SUICIDE_PIN_INVERTING
#define SUICIDE_PIN_INVERTING false
#endif