-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serial Communication has Problems because ubl.cpp is missing a newline. #20417
Comments
found more details here https://community.octoprint.org/t/serial-communication-with-printer-not-reliable/27339 |
The following seem to be in error, when DEBUG_ECHOLNPGM is disabled
|
A better answer is find the following in Marlin/src/module/settings.cpp
and change it to
then find
and change it to
|
PR created |
This has now been merged so is in bugfix. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
After compiling and uploading todays bugfix release i noticed i had massive issues with octoprint.
After asking for help in Octoprint Forum @foosel noticed there is a problem with Marlin where it does not set the Newline for a message correctly.
diff --git a/Marlin/src/feature/bedlevel/ubl/ubl.cpp b/Marlin/src/feature/bedlevel/ubl/ubl.cpp
index 087fdf42b2..82ce79e025 100644
--- a/Marlin/src/feature/bedlevel/ubl/ubl.cpp
+++ b/Marlin/src/feature/bedlevel/ubl/ubl.cpp
@@ -43,7 +43,7 @@
#include "math.h"
void unified_bed_leveling::echo_name() {
- SERIAL_ECHOPGM("Unified Bed Leveling");
+ SERIAL_ECHOPGM("Unified Bed Leveling\n");
}
void unified_bed_leveling::report_current_mesh() {
This Patch solves the Problem.
Thx in advance :)
The text was updated successfully, but these errors were encountered: