ardupilot/libraries/AP_Gripper/AP_Gripper_Backend.cpp

15 lines
228 B
C++
Raw Normal View History

2016-10-28 19:05:19 -03:00
#include "AP_Gripper_Backend.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();
}