YARP
Yet Another Robot Platform
ControlBoardWrapperRemoteCalibrator.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#ifndef YARP_DEV_CONTROLBOARDWRAPPER_CONTROLBOARDWRAPPERREMOTECALIBRATOR_H
7#define YARP_DEV_CONTROLBOARDWRAPPER_CONTROLBOARDWRAPPERREMOTECALIBRATOR_H
8
10
12
13
15 virtual public ControlBoardWrapperCommon,
17{
18public:
19 bool isCalibratorDevicePresent(bool* isCalib) override;
21 bool calibrateSingleJoint(int j) override;
22 bool calibrateWholePart() override;
23 bool homingSingleJoint(int j) override;
24 bool homingWholePart() override;
25 bool parkSingleJoint(int j, bool _wait = true) override;
26 bool parkWholePart() override;
27 bool quitCalibrate() override;
28 bool quitPark() override;
29};
30
31#endif // YARP_DEV_CONTROLBOARDWRAPPER_CONTROLBOARDWRAPPERREMOTECALIBRATOR_H
bool quitPark() override
quitPark: interrupt the park procedure
yarp::dev::IRemoteCalibrator * getCalibratorDevice() override
getCalibratorDevice: return the pointer stored with the setCalibratorDevice
bool isCalibratorDevicePresent(bool *isCalib) override
isCalibratorDevicePresent: check if a calibrator device has been set
bool parkSingleJoint(int j, bool _wait=true) override
parkSingleJoint(): start the parking procedure for the single joint
bool parkWholePart() override
parkWholePart: start the parking procedure for the whole part
bool homingSingleJoint(int j) override
homingSingleJoint: call the homing procedure for a single joint
bool quitCalibrate() override
quitCalibrate: interrupt the calibration procedure
bool homingWholePart() override
homingWholePart: call the homing procedure for a the whole part/device
bool calibrateSingleJoint(int j) override
calibrateSingleJoint: call the calibration procedure for the single joint
bool calibrateWholePart() override
calibrateWholePart: call the procedure for calibrating the whole device
IRemoteCalibrator interface is meant to remotize the access of the calibration device in order to all...