2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
* 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-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-15 21:28:54 -05:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(BEZIER_CURVE_SUPPORT)
|
|
|
|
|
|
|
|
#include "../../module/motion.h"
|
2017-09-06 06:28:31 -05:00
|
|
|
#include "../../module/planner_bezier.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parameters interpreted according to:
|
2020-07-28 01:04:44 -05:00
|
|
|
* https://linuxcnc.org/docs/2.7/html/gcode/g-code.html#gcode:g5
|
2017-09-06 06:28:31 -05:00
|
|
|
* However I, J omission is not supported at this point; all
|
|
|
|
* parameters can be omitted and default to zero.
|
|
|
|
*/
|
|
|
|
|
2017-09-15 21:28:54 -05:00
|
|
|
#include "../gcode.h"
|
2020-01-02 19:01:38 -06:00
|
|
|
#include "../../MarlinCore.h" // for IsRunning()
|
2017-09-15 21:28:54 -05:00
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* G5: Cubic B-spline
|
|
|
|
*/
|
2017-09-15 21:28:54 -05:00
|
|
|
void GcodeSuite::G5() {
|
2017-10-01 21:34:58 -05:00
|
|
|
if (MOTION_CONDITIONS) {
|
2017-09-06 06:28:31 -05:00
|
|
|
|
|
|
|
#if ENABLED(CNC_WORKSPACE_PLANES)
|
|
|
|
if (workspace_plane != PLANE_XY) {
|
2020-02-26 03:02:03 -06:00
|
|
|
SERIAL_ERROR_MSG(STR_ERR_BAD_PLANE_MODE);
|
2017-09-06 06:28:31 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-09-15 21:28:54 -05:00
|
|
|
get_destination_from_command();
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2019-09-29 04:25:39 -05:00
|
|
|
const xy_pos_t offsets[2] = {
|
|
|
|
{ parser.linearval('I'), parser.linearval('J') },
|
|
|
|
{ parser.linearval('P'), parser.linearval('Q') }
|
2017-09-06 06:28:31 -05:00
|
|
|
};
|
|
|
|
|
2019-09-29 04:25:39 -05:00
|
|
|
cubic_b_spline(current_position, destination, offsets, MMS_SCALED(feedrate_mm_s), active_extruder);
|
|
|
|
current_position = destination;
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
|
|
|
}
|
2017-09-15 21:28:54 -05:00
|
|
|
|
|
|
|
#endif // BEZIER_CURVE_SUPPORT
|