From b2886ec5a06ef7807d43953d7fb02b610fa685b3 Mon Sep 17 00:00:00 2001 From: BarbourSmith Date: Fri, 11 May 2018 10:52:38 -0700 Subject: [PATCH] Adds a link to a wiki page for when the sled is not keeping up Since this error catches most issues we've been getting a lot of folks asking about it in the forums. The PR adds the URL of a wiki page with more information to the popup. I also removed the words about writing down the line number because the popup occurs both when a program is running and when there is no program running. I would really like the link to be clickable, but opening a web browser from a popup is prety tricky so this will have to work for now --- cnc_ctrl_v1/Report.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cnc_ctrl_v1/Report.cpp b/cnc_ctrl_v1/Report.cpp index ffb51484..04d3b648 100644 --- a/cnc_ctrl_v1/Report.cpp +++ b/cnc_ctrl_v1/Report.cpp @@ -126,7 +126,7 @@ void reportAlarmMessage(byte alarm_code) { break; } case ALARM_POSITION_LIMIT_ERROR: { - Serial.println(F("The sled is not keeping up with its expected position - make a note of the line number. Then click the 'Stop' button to clear the alarm. ")); + Serial.println(F("The sled is not keeping up with its expected position and has halted. Click the 'Stop' button to clear the alarm. More information at: https://github.com/MaslowCNC/Firmware/wiki/Keeping-Up ")); sys.stop = true; break; }