8

I have a long print that keeps aborting. At some random point mid-print the printer says "Click to resume...". There is nothing in the G-code that asks for user confirmation. What could it be that triggers this? I noticed that sometimes (not every time) there is a blob of plastic in the way that should not be there.

On one occasion, after the "Click to resume...", the LCD showed the message FY178.N16466 and again waited for a click.

The printer is an Anet A8 with Marlin 1.1.9. Slicer is Cura. I am printing via USB from Cura directly.

This is the error message:

"Click to resume..." error message

Greenonline
  • 6,748
  • 8
  • 40
  • 68
Till B
  • 313
  • 3
  • 11

4 Answers4

6

To answer your question directly, this action (Click to resume...) is triggered by a buffer overflow of the Marlin firmware that is caused by the repetitive sending of M105 command by Ultimaker Cura (without checking the result).

This problem is a reported problem and fixed in the next release of Ultimaker Cura (please do note that as of posting this answer, the 3.6 Beta release is available for download). It appears to be a communication problem between Ultimaker Cura 3.4+ and 1.1.8+ versions of the Marlin firmware and has to to with polling of the temperature (M105). The link above also states it is fixed in the 3.6 release (which is the next release) as the fix has been integrated in the main code base.

This describes the problem:

To update the temperatures in the monitor, Cura sends M105 pings every 2 seconds. It seems that if this is done during a print without waiting for an OK from the printer, the serial buffer on the printer may still overflow eventually (causing Marlin to complain/pause).

and this describes the solution:

During some operations, such as preheating, the printer responds to new commands with echo:busy. While it is busy, it does send temperature messages, but these are not prepended with an ok, because the ok is supposed to show that a command was received and executed. So the two patches I wrote do the following:

  • the pattern matching no longer looks for ok messages, but looks for temperature updates (this fixes the temperature updating while the printer is preheating)
  • once the printer has said that it is busy, stop asking for temperature updates until the next ok is received (this prevents the serial buffer overflowing while preheating)

Old answer centered around the firmware (based on the text of the OP, no photo with the actual error message was added yet):

The text click to resume print cannot be found (with case insensitive search) in the latest sources of Marlin 1.1.9 down to Marlin 1.1.6. This means that you are using a different fork, an older version of Marlin or the message is not displayed as such.

The text message Resume print can be found, and is part of the message constant MSG_RESUME_PRINT

#define MSG_RESUME_PRINT                    _UxGT("Resume print")

But, this cannot be found in some sort of a concatenation using MSG_RESUME_PRINT!

0scar
  • 37,708
  • 12
  • 68
  • 156
2

This is not an answer/explanation per se, but it might help you track down the cause.


It might be worth enabling logging M928 to the SD card (ensure that the R/W tab on the SD card is set appropriately), so that (after this has happened a few times) then you can look through the log to see what the command preceding the abort was, and if it is consistently the same (sequence of) commands that cause this to happen.

M928 filename

If that doesn't throw up anything obvious, then, in conjunction with logging, you could enable debugging, see M111 Debug level. For example:

M111 S7 ; ECHO, ERRORS, INFO

Then run through the long print again. As before, after a few of the click to resume print messages, then go back and check the log for anything that might indicate why this is happening.

To subsequently disable the debugging:

M111 S0
Greenonline
  • 6,748
  • 8
  • 40
  • 68
2

For your information, this problem has occurred for me with Cura 3.6.0 (yesterday and 2 days ago)

I thought the problem was occurring with Marlin since 1.8.

My Marlin version is 1.3 (... just discover that because of that issue!)

As my printer works perfectly with 1.3, I'd prefer not to upgrade.

I had the 'click to resume' problem twice.

I've printed tons of ABS models without problem, two days ago, I've printed PLA models and had this issue. (70 °C 200 °C).

For sure if the problem occurs again, I'll upgrade to Marlin 1.9 (or even 2.0 even if still in beta) because it seems that you have found the problem and already solved it; I was surprised to read that it was fixed in Cura 3.6 since I had the problem with that version.

My printer is a Tevo Tarentula (modified, I've removed the pseudo bed leveling options because I prefer to level manually (no z move while printing)).

One more information is that in parallel, I've decided to print the first layer at a very low speed (adhesion problems).

I've changed from 30 mm/s (ABS with big adhesion problems) to 10 mm/s with PLA + Cura 3.6 and went into this bug (yes one could argue that I may print faster etc., but that's not the point here). Maybe I have the problem because I'm printing the 1st layer at a this slow speed (thus making the full buffer problem more critical).

The bug does not occur each time I print, even when printing the same model with same parameters...

@HuguesDug reported the same problem 14 days ago and @Leeb answered him that running with Marlin 1.9 solved the problem.

Greenonline
  • 6,748
  • 8
  • 40
  • 68
HSaturn
  • 21
  • 2
1

Tonight I had faced the same problem.

I've read somewhere (can't find the source now) that this is a Cura bug that has been fixed in Cura 3.6 beta

Trish
  • 22,760
  • 13
  • 53
  • 106