I have an MPCNC with SKR PRO and TFT screen purchased from V1. I’ve got a couple issues that I can’t sort out.
Using “M0 TEXT HERE” does not display TEXT HERE on the screen. It does pause but the screen says “Pause?” I would love to get the custom text working as reminders of what’s coming next. Right now a pause window comes up but doesn’t have the custom text. I click OK on the pause window and then have to click resume again on the screen.
The stop program button on the screen doesn’t stop the program. I’m using the TFT in touch mode and printing from the TFTSD. When I press stop on the screen, the screen acts like the program was stopped and moves back to another screen but the program continues to run. I then have to hit reset on the screen, my emergency stop button, or the emergency stop in ESP3d. Any of those completely kill the chance of starting the program over easily/quickly.
Anyone else have these issues or know how to fix them?
Your first issue has come across the forum several times, and I’ve never seen an answer. I’m assuming there is no fix. You can run your jobs in Marlin mode (hold the knob down for 2 seconds), and you will get the prompt.
As for your second issue, it is hard to say without knowing what g-code is being sent by the TFT firmware. There is a known Marlin issue where commands are not processed until the command reaches the front of the queue, so it may be that a legitimate pause/stop command is being issued, but that it has not reached the front of the queue before you killed your electronics.
If your TFT is issuing an Emergency Stop (M112), there is a feature in Marlin that can be enabled (requires compiling and re-flashing the firmware) that causes the stop to be processed immediately. See this code in configuration_adv.h:
/**
* Emergency Command Parser
*
* Add a low-level parser to intercept certain commands as they
* enter the serial receive buffer, so they cannot be blocked.
* Currently handles M108, M112, M410, M876
* NOTE: Not yet implemented for all platforms.
*/
//#define EMERGENCY_PARSER
The bad news is there is no way to recover from an emergency stop. I believe you are required to cycle the electronics, so there is no way to recover the job. The issue of an immediate pause and being able to resume the job in Marlin has come across the forum several times, and I’ve never seen a decent fix.
With some planning, and/or with some changes in your setup, you can recover the origin relative to the stock. This would allow you to re-run your job, so you would have some air cutting, but could theoritically save your stock and complete your job.
I bumped into a g-code that might be a workaround. I don’t have a TTF, so I have no way to test it. Does it display if a M117 is sent with the message before the M0 is sent? M117 explicitly says LCD, but since M0 eventually works…