mirror of https://github.com/ArduPilot/ardupilot
23 lines
557 B
C++
23 lines
557 B
C++
#include "AP_Gripper_Backend.h"
|
|
#include <AP_Math/AP_Math.h>
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
void AP_Gripper_Backend::init()
|
|
{
|
|
init_gripper();
|
|
}
|
|
|
|
// update - should be called at at least 10hz
|
|
void AP_Gripper_Backend::update()
|
|
{
|
|
update_gripper();
|
|
|
|
// close the gripper again if autoclose_time > 0.0
|
|
if (config.state == AP_Gripper::STATE_RELEASED && (_last_grab_or_release > 0) &&
|
|
(is_positive(config.autoclose_time)) &&
|
|
(AP_HAL::millis() - _last_grab_or_release > (config.autoclose_time * 1000.0))) {
|
|
grab();
|
|
}
|
|
}
|