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
|
|
|
*
|
|
|
|
*/
|
2019-07-04 22:44:12 -05:00
|
|
|
#pragma once
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
/**
|
|
|
|
* scara.h - SCARA-specific functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../core/macros.h"
|
|
|
|
|
2021-03-04 17:34:38 -06:00
|
|
|
extern float segments_per_second;
|
2017-09-08 15:35:25 -05:00
|
|
|
|
2021-03-03 17:46:32 -06:00
|
|
|
#if ENABLED(AXEL_TPARA)
|
2017-09-08 15:35:25 -05:00
|
|
|
|
2021-03-03 17:46:32 -06:00
|
|
|
float constexpr L1 = TPARA_LINKAGE_1, L2 = TPARA_LINKAGE_2, // Float constants for Robot arm calculations
|
|
|
|
L1_2 = sq(float(L1)), L1_2_2 = 2.0 * L1_2,
|
|
|
|
L2_2 = sq(float(L2));
|
2017-09-08 15:35:25 -05:00
|
|
|
|
2021-03-03 17:57:24 -06:00
|
|
|
void forward_kinematics(const float &a, const float &b, const float &c);
|
2021-03-03 17:46:32 -06:00
|
|
|
void home_TPARA();
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
float constexpr L1 = SCARA_LINKAGE_1, L2 = SCARA_LINKAGE_2, // Float constants for SCARA calculations
|
|
|
|
L1_2 = sq(float(L1)), L1_2_2 = 2.0 * L1_2,
|
|
|
|
L2_2 = sq(float(L2));
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2021-03-03 17:57:24 -06:00
|
|
|
void forward_kinematics(const float &a, const float &b);
|
2021-03-03 17:46:32 -06:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void inverse_kinematics(const xyz_pos_t &raw);
|
|
|
|
void scara_set_axis_is_at_home(const AxisEnum axis);
|
2017-09-08 15:35:25 -05:00
|
|
|
void scara_report_positions();
|