2012-11-01 15:37:27 +00:00
|
|
|
/*
|
|
|
|
report.c - reporting and messaging methods
|
|
|
|
Part of Grbl
|
|
|
|
|
|
|
|
Copyright (c) 2012 Sungeun K. Jeon
|
|
|
|
|
|
|
|
Grbl is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Grbl is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
This file functions as the primary feedback interface for Grbl. Any outgoing data, such
|
|
|
|
as the protocol status messages, feedback messages, and status reports, are stored here.
|
|
|
|
For the most part, these functions primarily are called from protocol.c methods. If a
|
|
|
|
different style feedback is desired (i.e. JSON), then a user can change these following
|
|
|
|
methods to accomodate their needs.
|
|
|
|
*/
|
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
#include <avr/pgmspace.h>
|
|
|
|
#include "report.h"
|
2012-11-01 15:37:27 +00:00
|
|
|
#include "print.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "nuts_bolts.h"
|
2012-11-02 01:48:55 +00:00
|
|
|
#include "gcode.h"
|
|
|
|
#include "coolant_control.h"
|
2012-11-01 15:37:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Handles the primary confirmation protocol response for streaming interfaces and human-feedback.
|
|
|
|
// For every incoming line, this method responds with an 'ok' for a successful command or an
|
|
|
|
// 'error:' to indicate some error event with the line or some critical system error during
|
|
|
|
// operation. Errors events can originate from the g-code parser, settings module, or asynchronously
|
|
|
|
// from a critical error, such as a triggered hard limit. Interface should always monitor for these
|
|
|
|
// responses.
|
|
|
|
// NOTE: In silent mode, all error codes are greater than zero.
|
|
|
|
// TODO: Install silent mode to return only numeric values, primarily for GUIs.
|
|
|
|
void report_status_message(uint8_t status_code)
|
|
|
|
{
|
|
|
|
if (status_code == 0) { // STATUS_OK
|
|
|
|
printPgmString(PSTR("ok\r\n"));
|
|
|
|
} else {
|
|
|
|
printPgmString(PSTR("error: "));
|
|
|
|
switch(status_code) {
|
|
|
|
case STATUS_BAD_NUMBER_FORMAT:
|
|
|
|
printPgmString(PSTR("Bad number format")); break;
|
|
|
|
case STATUS_EXPECTED_COMMAND_LETTER:
|
|
|
|
printPgmString(PSTR("Expected command letter")); break;
|
|
|
|
case STATUS_UNSUPPORTED_STATEMENT:
|
|
|
|
printPgmString(PSTR("Unsupported statement")); break;
|
2012-11-10 19:49:33 +00:00
|
|
|
case STATUS_ARC_RADIUS_ERROR:
|
|
|
|
printPgmString(PSTR("Invalid radius")); break;
|
2012-11-01 15:37:27 +00:00
|
|
|
case STATUS_MODAL_GROUP_VIOLATION:
|
|
|
|
printPgmString(PSTR("Modal group violation")); break;
|
|
|
|
case STATUS_INVALID_STATEMENT:
|
|
|
|
printPgmString(PSTR("Invalid statement")); break;
|
|
|
|
case STATUS_SETTING_DISABLED:
|
2012-11-04 17:48:57 +00:00
|
|
|
printPgmString(PSTR("Setting disabled")); break;
|
2012-11-01 15:37:27 +00:00
|
|
|
case STATUS_SETTING_VALUE_NEG:
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR("Value < 0.0")); break;
|
2012-11-01 15:37:27 +00:00
|
|
|
case STATUS_SETTING_STEP_PULSE_MIN:
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR("Value < 3 usec")); break;
|
2012-11-01 15:37:27 +00:00
|
|
|
case STATUS_SETTING_READ_FAIL:
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR("EEPROM read fail. Using defaults")); break;
|
2012-11-06 04:40:52 +00:00
|
|
|
case STATUS_IDLE_ERROR:
|
2012-11-15 00:36:29 +00:00
|
|
|
printPgmString(PSTR("Busy or queued")); break;
|
|
|
|
case STATUS_ALARM_LOCK:
|
|
|
|
printPgmString(PSTR("Alarm lock")); break;
|
2012-11-01 15:37:27 +00:00
|
|
|
}
|
|
|
|
printPgmString(PSTR("\r\n"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-15 00:36:29 +00:00
|
|
|
// Prints alarm messages.
|
|
|
|
void report_alarm_message(int8_t alarm_code)
|
|
|
|
{
|
|
|
|
printPgmString(PSTR("ALARM: "));
|
|
|
|
switch (alarm_code) {
|
|
|
|
case ALARM_HARD_LIMIT:
|
|
|
|
printPgmString(PSTR("Hard limit")); break;
|
|
|
|
case ALARM_ABORT_CYCLE:
|
|
|
|
printPgmString(PSTR("Abort during cycle")); break;
|
|
|
|
}
|
|
|
|
printPgmString(PSTR(". MPos?\r\n"));
|
|
|
|
}
|
2012-11-01 15:37:27 +00:00
|
|
|
|
|
|
|
// Prints feedback messages. This serves as a centralized method to provide additional
|
2012-11-15 00:36:29 +00:00
|
|
|
// user feedback for things that are not of the status/alarm message protocol. These are
|
|
|
|
// messages such as setup warnings, switch toggling, and how to exit alarms.
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
// NOTE: For interfaces, messages are always placed within brackets. And if silent mode
|
2012-11-02 01:48:55 +00:00
|
|
|
// is installed, the message number codes are less than zero.
|
2012-11-01 15:37:27 +00:00
|
|
|
// TODO: Install silence feedback messages option in settings
|
2012-11-15 00:36:29 +00:00
|
|
|
void report_feedback_message(uint8_t message_code)
|
2012-11-01 15:37:27 +00:00
|
|
|
{
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
printPgmString(PSTR("["));
|
2012-11-01 15:37:27 +00:00
|
|
|
switch(message_code) {
|
2012-11-06 04:40:52 +00:00
|
|
|
case MESSAGE_CRITICAL_EVENT:
|
2012-11-15 00:36:29 +00:00
|
|
|
printPgmString(PSTR("Reset to continue")); break;
|
|
|
|
case MESSAGE_ALARM_LOCK:
|
|
|
|
printPgmString(PSTR("'$H'|'$X' to unlock")); break;
|
|
|
|
case MESSAGE_ALARM_UNLOCK:
|
|
|
|
printPgmString(PSTR("Caution: Unlocked")); break;
|
2012-11-06 04:40:52 +00:00
|
|
|
case MESSAGE_ENABLED:
|
|
|
|
printPgmString(PSTR("Enabled")); break;
|
|
|
|
case MESSAGE_DISABLED:
|
|
|
|
printPgmString(PSTR("Disabled")); break;
|
2012-11-01 15:37:27 +00:00
|
|
|
}
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
printPgmString(PSTR("]\r\n"));
|
2012-11-01 15:37:27 +00:00
|
|
|
}
|
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
|
2012-11-01 15:37:27 +00:00
|
|
|
// Welcome message
|
|
|
|
void report_init_message()
|
|
|
|
{
|
2012-11-02 01:48:55 +00:00
|
|
|
printPgmString(PSTR("\r\nGrbl " GRBL_VERSION " ['$' for help]\r\n"));
|
2012-11-01 15:37:27 +00:00
|
|
|
}
|
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
// Grbl help message
|
2012-11-01 15:37:27 +00:00
|
|
|
void report_grbl_help() {
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR("$$ (view Grbl settings)\r\n"
|
|
|
|
"$# (view # parameters)\r\n"
|
|
|
|
"$G (view parser state)\r\n"
|
|
|
|
"$N (view startup blocks)\r\n"
|
|
|
|
"$x=value (save Grbl setting)\r\n"
|
|
|
|
"$Nx=line (save startup block)\r\n"
|
2012-11-16 04:53:11 +00:00
|
|
|
"$C (check gcode mode)\r\n"
|
2012-11-15 00:36:29 +00:00
|
|
|
"$X (kill alarm lock)\r\n"
|
2012-11-08 03:53:03 +00:00
|
|
|
"$H (run homing cycle)\r\n"
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
"~ (cycle start)\r\n"
|
|
|
|
"! (feed hold)\r\n"
|
2012-11-16 04:53:11 +00:00
|
|
|
"? (current status)\r\n"
|
2012-11-08 03:53:03 +00:00
|
|
|
"ctrl-x (reset Grbl)\r\n"));
|
2012-11-02 01:48:55 +00:00
|
|
|
}
|
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
// Grbl global settings print out.
|
|
|
|
// NOTE: The numbering scheme here must correlate to storing in settings.c
|
2012-11-02 01:48:55 +00:00
|
|
|
void report_grbl_settings() {
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
printPgmString(PSTR("$0=")); printFloat(settings.steps_per_mm[X_AXIS]);
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR(" (x, step/mm)\r\n$1=")); printFloat(settings.steps_per_mm[Y_AXIS]);
|
|
|
|
printPgmString(PSTR(" (y, step/mm)\r\n$2=")); printFloat(settings.steps_per_mm[Z_AXIS]);
|
2012-12-16 23:23:24 +00:00
|
|
|
printPgmString(PSTR(" (z, step/mm)\r\n$3=")); printFloat(settings.max_velocity[X_AXIS]);
|
|
|
|
printPgmString(PSTR(" (x v_max, mm/min)\r\n$4=")); printFloat(settings.max_velocity[Y_AXIS]);
|
|
|
|
printPgmString(PSTR(" (y v_max, mm/min)\r\n$5=")); printFloat(settings.max_velocity[Z_AXIS]);
|
|
|
|
printPgmString(PSTR(" (z v_max, mm/min)\r\n$6=")); printFloat(settings.acceleration[X_AXIS]/(60*60)); // Convert from mm/min^2 for human readability
|
|
|
|
printPgmString(PSTR(" (x accel, mm/sec^2)\r\n$7=")); printFloat(settings.acceleration[Y_AXIS]/(60*60)); // Convert from mm/min^2 for human readability
|
|
|
|
printPgmString(PSTR(" (y accel, mm/sec^2)\r\n$8=")); printFloat(settings.acceleration[Z_AXIS]/(60*60)); // Convert from mm/min^2 for human readability
|
|
|
|
printPgmString(PSTR(" (z accel, mm/sec^2)\r\n$9=")); printInteger(settings.pulse_microseconds);
|
|
|
|
printPgmString(PSTR(" (step pulse, usec)\r\n$10=")); printFloat(settings.default_feed_rate);
|
|
|
|
printPgmString(PSTR(" (default feed, mm/min)\r\n$11=")); printInteger(settings.invert_mask);
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR(" (step port invert mask, int:")); print_uint8_base2(settings.invert_mask);
|
2012-12-16 23:23:24 +00:00
|
|
|
printPgmString(PSTR(")\r\n$12=")); printInteger(settings.stepper_idle_lock_time);
|
|
|
|
printPgmString(PSTR(" (step idle delay, msec)\r\n$13=")); printFloat(settings.junction_deviation);
|
2012-12-20 00:30:09 +00:00
|
|
|
printPgmString(PSTR(" (junction deviation, mm)\r\n$14=")); printFloat(settings.arc_tolerance);
|
|
|
|
printPgmString(PSTR(" (arc tolerance, mm)\r\n$15=")); printInteger(settings.decimal_places);
|
|
|
|
printPgmString(PSTR(" (n-decimals, int)\r\n$16=")); printInteger(bit_istrue(settings.flags,BITFLAG_REPORT_INCHES));
|
|
|
|
printPgmString(PSTR(" (report inches, bool)\r\n$17=")); printInteger(bit_istrue(settings.flags,BITFLAG_AUTO_START));
|
|
|
|
printPgmString(PSTR(" (auto start, bool)\r\n$18=")); printInteger(bit_istrue(settings.flags,BITFLAG_INVERT_ST_ENABLE));
|
|
|
|
printPgmString(PSTR(" (invert step enable, bool)\r\n$19=")); printInteger(bit_istrue(settings.flags,BITFLAG_HARD_LIMIT_ENABLE));
|
|
|
|
printPgmString(PSTR(" (hard limits, bool)\r\n$20=")); printInteger(bit_istrue(settings.flags,BITFLAG_HOMING_ENABLE));
|
|
|
|
printPgmString(PSTR(" (homing cycle, bool)\r\n$21=")); printInteger(settings.homing_dir_mask);
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR(" (homing dir invert mask, int:")); print_uint8_base2(settings.homing_dir_mask);
|
2012-12-20 00:30:09 +00:00
|
|
|
printPgmString(PSTR(")\r\n$22=")); printFloat(settings.homing_feed_rate);
|
|
|
|
printPgmString(PSTR(" (homing feed, mm/min)\r\n$23=")); printFloat(settings.homing_seek_rate);
|
|
|
|
printPgmString(PSTR(" (homing seek, mm/min)\r\n$24=")); printInteger(settings.homing_debounce_delay);
|
|
|
|
printPgmString(PSTR(" (homing debounce, msec)\r\n$25=")); printFloat(settings.homing_pulloff);
|
2012-11-08 03:53:03 +00:00
|
|
|
printPgmString(PSTR(" (homing pull-off, mm)\r\n"));
|
2012-11-01 15:37:27 +00:00
|
|
|
}
|
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
|
|
|
|
// Prints gcode coordinate offset parameters
|
2012-11-02 01:48:55 +00:00
|
|
|
void report_gcode_parameters()
|
|
|
|
{
|
|
|
|
float coord_data[N_AXIS];
|
|
|
|
uint8_t coord_select, i;
|
|
|
|
for (coord_select = 0; coord_select <= SETTING_INDEX_NCOORD; coord_select++) {
|
|
|
|
if (!(settings_read_coord_data(coord_select,coord_data))) {
|
|
|
|
report_status_message(STATUS_SETTING_READ_FAIL);
|
|
|
|
return;
|
|
|
|
}
|
2012-11-20 00:39:40 +00:00
|
|
|
printPgmString(PSTR("[G"));
|
2012-11-02 01:48:55 +00:00
|
|
|
switch (coord_select) {
|
2012-11-20 00:39:40 +00:00
|
|
|
case 0: printPgmString(PSTR("54:")); break;
|
|
|
|
case 1: printPgmString(PSTR("55:")); break;
|
|
|
|
case 2: printPgmString(PSTR("56:")); break;
|
|
|
|
case 3: printPgmString(PSTR("57:")); break;
|
|
|
|
case 4: printPgmString(PSTR("58:")); break;
|
|
|
|
case 5: printPgmString(PSTR("59:")); break;
|
|
|
|
case 6: printPgmString(PSTR("28:")); break;
|
|
|
|
case 7: printPgmString(PSTR("30:")); break;
|
|
|
|
// case 8: printPgmString(PSTR("92:")); break; // G92.2, G92.3 not supported. Hence not stored.
|
2012-11-02 01:48:55 +00:00
|
|
|
}
|
|
|
|
for (i=0; i<N_AXIS; i++) {
|
|
|
|
if (bit_istrue(settings.flags,BITFLAG_REPORT_INCHES)) { printFloat(coord_data[i]*INCH_PER_MM); }
|
|
|
|
else { printFloat(coord_data[i]); }
|
|
|
|
if (i < (N_AXIS-1)) { printPgmString(PSTR(",")); }
|
|
|
|
else { printPgmString(PSTR("]\r\n")); }
|
|
|
|
}
|
|
|
|
}
|
2012-11-20 00:39:40 +00:00
|
|
|
printPgmString(PSTR("[G92:")); // Print G92,G92.1 which are not persistent in memory
|
2012-11-02 01:48:55 +00:00
|
|
|
for (i=0; i<N_AXIS; i++) {
|
|
|
|
if (bit_istrue(settings.flags,BITFLAG_REPORT_INCHES)) { printFloat(gc.coord_offset[i]*INCH_PER_MM); }
|
|
|
|
else { printFloat(gc.coord_offset[i]); }
|
|
|
|
if (i < (N_AXIS-1)) { printPgmString(PSTR(",")); }
|
|
|
|
else { printPgmString(PSTR("]\r\n")); }
|
|
|
|
}
|
|
|
|
}
|
2012-11-01 15:37:27 +00:00
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
|
2012-11-16 04:53:11 +00:00
|
|
|
// Print current gcode parser mode state
|
2012-11-02 01:48:55 +00:00
|
|
|
void report_gcode_modes()
|
|
|
|
{
|
|
|
|
switch (gc.motion_mode) {
|
2012-11-20 00:39:40 +00:00
|
|
|
case MOTION_MODE_SEEK : printPgmString(PSTR("[G0")); break;
|
|
|
|
case MOTION_MODE_LINEAR : printPgmString(PSTR("[G1")); break;
|
|
|
|
case MOTION_MODE_CW_ARC : printPgmString(PSTR("[G2")); break;
|
|
|
|
case MOTION_MODE_CCW_ARC : printPgmString(PSTR("[G3")); break;
|
|
|
|
case MOTION_MODE_CANCEL : printPgmString(PSTR("[G80")); break;
|
2012-11-02 01:48:55 +00:00
|
|
|
}
|
2012-11-01 15:37:27 +00:00
|
|
|
|
2012-11-02 01:48:55 +00:00
|
|
|
printPgmString(PSTR(" G"));
|
|
|
|
printInteger(gc.coord_select+54);
|
|
|
|
|
|
|
|
if (gc.plane_axis_0 == X_AXIS) {
|
|
|
|
if (gc.plane_axis_1 == Y_AXIS) { printPgmString(PSTR(" G17")); }
|
|
|
|
else { printPgmString(PSTR(" G18")); }
|
|
|
|
} else { printPgmString(PSTR(" G19")); }
|
|
|
|
|
|
|
|
if (gc.inches_mode) { printPgmString(PSTR(" G20")); }
|
|
|
|
else { printPgmString(PSTR(" G21")); }
|
|
|
|
|
|
|
|
if (gc.absolute_mode) { printPgmString(PSTR(" G90")); }
|
|
|
|
else { printPgmString(PSTR(" G91")); }
|
|
|
|
|
|
|
|
if (gc.inverse_feed_rate_mode) { printPgmString(PSTR(" G93")); }
|
|
|
|
else { printPgmString(PSTR(" G94")); }
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
|
2012-11-02 01:48:55 +00:00
|
|
|
switch (gc.program_flow) {
|
|
|
|
case PROGRAM_FLOW_RUNNING : printPgmString(PSTR(" M0")); break;
|
|
|
|
case PROGRAM_FLOW_PAUSED : printPgmString(PSTR(" M1")); break;
|
|
|
|
case PROGRAM_FLOW_COMPLETED : printPgmString(PSTR(" M2")); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (gc.spindle_direction) {
|
|
|
|
case 1 : printPgmString(PSTR(" M3")); break;
|
|
|
|
case -1 : printPgmString(PSTR(" M4")); break;
|
|
|
|
case 0 : printPgmString(PSTR(" M5")); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (gc.coolant_mode) {
|
|
|
|
case COOLANT_DISABLE : printPgmString(PSTR(" M9")); break;
|
|
|
|
case COOLANT_FLOOD_ENABLE : printPgmString(PSTR(" M8")); break;
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
#ifdef ENABLE_M7
|
|
|
|
case COOLANT_MIST_ENABLE : printPgmString(PSTR(" M7")); break;
|
|
|
|
#endif
|
2012-11-02 01:48:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printPgmString(PSTR(" T"));
|
|
|
|
printInteger(gc.tool);
|
|
|
|
|
|
|
|
printPgmString(PSTR(" F"));
|
|
|
|
if (gc.inches_mode) { printFloat(gc.feed_rate*INCH_PER_MM); }
|
|
|
|
else { printFloat(gc.feed_rate); }
|
2012-11-16 04:53:11 +00:00
|
|
|
|
2012-11-20 00:39:40 +00:00
|
|
|
printPgmString(PSTR("]\r\n"));
|
2012-11-02 01:48:55 +00:00
|
|
|
}
|
2012-11-01 15:37:27 +00:00
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
// Prints specified startup line
|
|
|
|
void report_startup_line(uint8_t n, char *line)
|
|
|
|
{
|
2012-11-20 00:39:40 +00:00
|
|
|
printPgmString(PSTR("$N")); printInteger(n);
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
printPgmString(PSTR("=")); printString(line);
|
|
|
|
printPgmString(PSTR("\r\n"));
|
|
|
|
}
|
2012-11-01 15:37:27 +00:00
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 17:32:23 +00:00
|
|
|
// Prints real-time data. This function grabs a real-time snapshot of the stepper subprogram
|
|
|
|
// and the actual location of the CNC machine. Users may change the following function to their
|
|
|
|
// specific needs, but the desired real-time data report must be as short as possible. This is
|
|
|
|
// requires as it minimizes the computational overhead and allows grbl to keep running smoothly,
|
|
|
|
// especially during g-code programs with fast, short line segments and high frequency reports (5-20Hz).
|
2012-11-01 15:37:27 +00:00
|
|
|
void report_realtime_status()
|
|
|
|
{
|
2012-11-15 00:36:29 +00:00
|
|
|
// **Under construction** Bare-bones status report. Provides real-time machine position relative to
|
|
|
|
// the system power on location (0,0,0) and work coordinate position (G54 and G92 applied). Eventually
|
|
|
|
// to be added are distance to go on block, processed block id, and feed rate. Also a settings bitmask
|
|
|
|
// for a user to select the desired real-time data.
|
|
|
|
uint8_t i;
|
2013-01-09 22:22:45 +00:00
|
|
|
int32_t current_position[N_AXIS]; // Copy current state of the system position variable
|
2012-11-15 00:36:29 +00:00
|
|
|
memcpy(current_position,sys.position,sizeof(sys.position));
|
2013-01-09 22:22:45 +00:00
|
|
|
float print_position[N_AXIS];
|
2012-11-15 00:36:29 +00:00
|
|
|
|
2012-11-16 04:53:11 +00:00
|
|
|
// Report current machine state
|
|
|
|
switch (sys.state) {
|
2012-11-20 00:39:40 +00:00
|
|
|
case STATE_IDLE: printPgmString(PSTR("<Idle")); break;
|
2012-12-11 01:50:18 +00:00
|
|
|
// case STATE_INIT: printPgmString(PSTR("<Init")); break; // Never observed
|
2012-11-20 00:39:40 +00:00
|
|
|
case STATE_QUEUED: printPgmString(PSTR("<Queue")); break;
|
|
|
|
case STATE_CYCLE: printPgmString(PSTR("<Run")); break;
|
|
|
|
case STATE_HOLD: printPgmString(PSTR("<Hold")); break;
|
|
|
|
case STATE_HOMING: printPgmString(PSTR("<Home")); break;
|
|
|
|
case STATE_ALARM: printPgmString(PSTR("<Alarm")); break;
|
|
|
|
case STATE_CHECK_MODE: printPgmString(PSTR("<Check")); break;
|
2012-11-16 04:53:11 +00:00
|
|
|
}
|
2012-11-01 15:37:27 +00:00
|
|
|
|
2012-11-15 00:36:29 +00:00
|
|
|
// Report machine position
|
2012-11-16 04:53:11 +00:00
|
|
|
printPgmString(PSTR(",MPos:"));
|
2013-01-09 22:22:45 +00:00
|
|
|
for (i=0; i< N_AXIS; i++) {
|
2012-11-15 00:36:29 +00:00
|
|
|
print_position[i] = current_position[i]/settings.steps_per_mm[i];
|
|
|
|
if (bit_istrue(settings.flags,BITFLAG_REPORT_INCHES)) { print_position[i] *= INCH_PER_MM; }
|
|
|
|
printFloat(print_position[i]);
|
2012-11-16 04:53:11 +00:00
|
|
|
printPgmString(PSTR(","));
|
2012-11-15 00:36:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Report work position
|
2012-11-16 04:53:11 +00:00
|
|
|
printPgmString(PSTR("WPos:"));
|
2013-01-09 22:22:45 +00:00
|
|
|
for (i=0; i< N_AXIS; i++) {
|
2012-11-15 00:36:29 +00:00
|
|
|
if (bit_istrue(settings.flags,BITFLAG_REPORT_INCHES)) {
|
|
|
|
print_position[i] -= (gc.coord_system[i]+gc.coord_offset[i])*INCH_PER_MM;
|
|
|
|
} else {
|
|
|
|
print_position[i] -= gc.coord_system[i]+gc.coord_offset[i];
|
|
|
|
}
|
|
|
|
printFloat(print_position[i]);
|
2013-01-09 22:22:45 +00:00
|
|
|
if (i < N_AXIS-1) { printPgmString(PSTR(",")); }
|
2012-11-15 00:36:29 +00:00
|
|
|
}
|
|
|
|
|
2012-11-20 00:39:40 +00:00
|
|
|
printPgmString(PSTR(">\r\n"));
|
2012-11-01 15:37:27 +00:00
|
|
|
}
|