2016-10-30 03:00:04 -03: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
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
simple Gripper (EPM) simulation class
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-31 09:33:23 -03:00
|
|
|
#include "stdint.h"
|
|
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
#include "SITL_Input.h"
|
2016-10-30 03:00:04 -03:00
|
|
|
|
|
|
|
namespace SITL {
|
|
|
|
|
|
|
|
class Gripper_EPM {
|
|
|
|
public:
|
2018-07-31 09:33:23 -03:00
|
|
|
Gripper_EPM() {
|
|
|
|
AP_Param::setup_object_defaults(this, var_info);
|
|
|
|
};
|
2016-10-30 03:00:04 -03:00
|
|
|
|
2018-07-31 09:33:23 -03:00
|
|
|
float payload_mass() const { return 0.0f; } // kg
|
2016-10-30 03:00:04 -03:00
|
|
|
|
|
|
|
// update field stength
|
2018-07-31 09:33:23 -03:00
|
|
|
void update(const struct sitl_input &input);
|
|
|
|
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
bool is_enabled() const {return static_cast<bool>(gripper_emp_enable);}
|
2016-10-30 03:00:04 -03:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-07-31 09:33:23 -03:00
|
|
|
AP_Int8 gripper_emp_enable; // enable gripper sim
|
|
|
|
AP_Int8 gripper_emp_servo_pin;
|
|
|
|
|
2016-10-30 03:00:04 -03:00
|
|
|
const uint32_t report_interval = 100000; // microseconds
|
|
|
|
uint64_t last_report_us;
|
|
|
|
|
|
|
|
bool servo_based = true;
|
|
|
|
|
2019-09-05 01:11:35 -03:00
|
|
|
float field_strength; // percentage
|
|
|
|
float reported_field_strength = -1; // unlikely
|
2016-10-30 03:00:04 -03:00
|
|
|
|
|
|
|
// I've a feeling these are probably a higher order than this:
|
|
|
|
const float field_strength_slew_rate = 400; // (percentage of delta between field strength and 100)/second
|
|
|
|
const float field_decay_rate = 2; // percent of field strength/second
|
|
|
|
const float field_degauss_rate = 300; // percent of field strength/second
|
|
|
|
|
|
|
|
uint64_t last_update_us;
|
|
|
|
|
2021-02-01 12:37:57 -04:00
|
|
|
bool should_report() const;
|
2016-10-30 03:00:04 -03:00
|
|
|
|
2018-07-31 09:33:23 -03:00
|
|
|
void update_from_demand();
|
|
|
|
void update_servobased(int16_t gripper_pwm);
|
2016-10-30 03:00:04 -03:00
|
|
|
|
2021-02-01 12:37:57 -04:00
|
|
|
float tesla() const;
|
2016-10-30 03:00:04 -03:00
|
|
|
|
|
|
|
float demand;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|