muele-marlin/Marlin/src/gcode/config/M220.cpp

52 lines
1.6 KiB
C++
Raw Normal View History

/**
* Marlin 3D Printer Firmware
2020-02-03 14:00:57 +00:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
2019-06-28 04:57:50 +00:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program 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.
*
* This program 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
2020-07-23 03:20:14 +00:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2017-09-17 07:39:44 +00:00
#include "../gcode.h"
#include "../../module/motion.h"
/**
2019-11-26 09:34:18 +00:00
* M220: Set speed percentage factor, aka "Feed Rate"
*
* Parameters
* S<percent> : Set the feed rate percentage factor
*
2020-03-11 01:13:59 +00:00
* Report the current speed percentage factor if no parameter is specified
2020-03-22 02:16:08 +00:00
*
2020-11-18 07:27:21 +00:00
* For MMU2 and MMU2S devices...
2019-11-26 09:34:18 +00:00
* B : Flag to back up the current factor
* R : Flag to restore the last-saved factor
*/
2017-09-17 07:39:44 +00:00
void GcodeSuite::M220() {
static int16_t backup_feedrate_percentage = 100;
if (parser.seen('B')) backup_feedrate_percentage = feedrate_percentage;
if (parser.seen('R')) feedrate_percentage = backup_feedrate_percentage;
2019-11-26 09:34:18 +00:00
if (parser.seenval('S')) feedrate_percentage = parser.value_int();
2017-09-17 07:39:44 +00:00
2020-03-11 01:13:59 +00:00
if (!parser.seen_any()) {
2021-09-09 09:57:05 +00:00
SERIAL_ECHOPGM("FR:", feedrate_percentage);
2020-03-11 01:13:59 +00:00
SERIAL_CHAR('%');
SERIAL_EOL();
}
}