You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
228 B

#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();
}