YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
SerialServoBoard.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-FileCopyrightText: 2008 Giacomo Spigler
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
8#include <yarp/dev/Drivers.h>
10#include <yarp/dev/PolyDriver.h>
11
12#include <cstdio>
13#include <cstdlib>
14#include <cstring>
15
16#define round(x) ((x) >= 0 ? (int)((x) + 0.5) : (int)((x)-0.5))
17#define FABS(x) (x >= 0 ? x : -x)
18
19#define SSC32 1
20#define MINISSC 2
21#define PONTECHSV203X 3
22#define MONDOTRONICSMI 4
23#define POLOLUUSB16 6
24#define PICOPIC 7
25
26
27using namespace yarp::os;
28using namespace yarp::dev;
29
30
31bool movessc32(int j, double ref, double* positions, double* speeds, ISerialDevice* serial);
32bool moveminissc(int j, double ref, double* positions, double* speeds, ISerialDevice* serial);
33bool movepontech(int j, double ref, double* positions, double* speeds, ISerialDevice* serial);
34bool movemondotronic(int j, double ref, double* positions, double* speeds, ISerialDevice* serial);
35bool movepololu(int j, double ref, double* positions, double* speeds, ISerialDevice* serial);
36bool movepicopic(int j, double ref, double* positions, double* speeds, ISerialDevice* serial);
37
44{
45public:
47
49
51
52 bool (*move)(int j, double ref, double* positions, double* speeds, ISerialDevice* serial);
53
54 double* positions;
55 double* speeds;
56
57 bool getAxes(int* ax) override;
58 bool positionMove(int j, double ref) override;
59 bool positionMove(const double* refs) override;
60 bool relativeMove(int j, double delta) override;
61 bool relativeMove(const double* deltas) override;
62 bool checkMotionDone(int j, bool* flag) override;
63 bool checkMotionDone(bool* flag) override;
64 bool setRefSpeed(int j, double sp) override;
65 bool setRefSpeeds(const double* spds) override;
66 bool setRefAcceleration(int j, double acc) override;
67 bool setRefAccelerations(const double* accs) override;
68 bool getRefSpeed(int j, double* ref) override;
69 bool getRefSpeeds(double* spds) override;
70 bool getRefAcceleration(int j, double* acc) override;
71 bool getRefAccelerations(double* accs) override;
72 bool stop(int j) override;
73 bool stop() override;
74 bool positionMove(const int n_joint, const int* joints, const double* refs) override;
75 bool relativeMove(const int n_joint, const int* joints, const double* deltas) override;
76 bool checkMotionDone(const int n_joint, const int* joints, bool* flags) override;
77 bool setRefSpeeds(const int n_joint, const int* joints, const double* spds) override;
78 bool setRefAccelerations(const int n_joint, const int* joints, const double* accs) override;
79 bool getRefSpeeds(const int n_joint, const int* joints, double* spds) override;
80 bool getRefAccelerations(const int n_joint, const int* joints, double* accs) override;
81 bool stop(const int n_joint, const int* joints) override;
82
83 bool open(Searchable& config) override;
84 bool close() override;
85};
define control board standard interfaces
bool movemondotronic(int j, double ref, double *positions, double *speeds, ISerialDevice *serial)
bool movepontech(int j, double ref, double *positions, double *speeds, ISerialDevice *serial)
bool movepicopic(int j, double ref, double *positions, double *speeds, ISerialDevice *serial)
bool movepololu(int j, double ref, double *positions, double *speeds, ISerialDevice *serial)
bool movessc32(int j, double ref, double *positions, double *speeds, ISerialDevice *serial)
bool moveminissc(int j, double ref, double *positions, double *speeds, ISerialDevice *serial)
SerialServoBoard: Documentation to be added
bool getRefSpeed(int j, double *ref) override
Get reference speed for a joint.
bool(* move)(int j, double ref, double *positions, double *speeds, ISerialDevice *serial)
bool checkMotionDone(int j, bool *flag) override
Check if the current trajectory is terminated.
bool getRefAccelerations(double *accs) override
Get reference acceleration of all joints.
bool getRefAcceleration(int j, double *acc) override
Get reference acceleration for a joint.
bool getAxes(int *ax) override
Get the number of controlled axes.
ISerialDevice * serial
bool close() override
Close the DeviceDriver.
bool setRefSpeeds(const double *spds) override
Set reference speed on all joints.
bool getRefSpeeds(double *spds) override
Get reference speed of all joints.
bool setRefSpeed(int j, double sp) override
Set reference speed for a joint, this is the speed used during the interpolation of the trajectory.
bool open(Searchable &config) override
Open the DeviceDriver.
bool stop() override
Stop motion, multiple joints.
bool setRefAcceleration(int j, double acc) override
Set reference acceleration for a joint.
bool positionMove(int j, double ref) override
Set new reference point for a single axis.
bool setRefAccelerations(const double *accs) override
Set reference acceleration on all joints.
bool relativeMove(int j, double delta) override
Set relative position.
Interface implemented by all device drivers.
Interface for a generic control board device implementing position control.
A generic interface to serial port devices.
A container for a device driver.
Definition PolyDriver.h:23
A mini-server for performing network communication in the background.
A base class for nested structures that can be searched.
Definition Searchable.h:31
For streams capable of holding different kinds of content, check what they actually have.
Definition jointData.cpp:13
An interface to the operating system, including Port based communication.