AP_Gripper_Backend.cpp 228 B

1234567891011121314
  1. #include "AP_Gripper_Backend.h"
  2. extern const AP_HAL::HAL& hal;
  3. void AP_Gripper_Backend::init()
  4. {
  5. init_gripper();
  6. }
  7. // update - should be called at at least 10hz
  8. void AP_Gripper_Backend::update()
  9. {
  10. update_gripper();
  11. }