Part of a series of examples on the different ways of using ports. See Port power tutorial.
#include <stdio.h>
#include "TargetVer1.h"
int ct = 0;
Port p;
p.open("/target/raw/out");
while (true) {
BinPortable<Target> b;
b.content().x = ct;
b.content().y = 42;
ct++;
p.write(b);
printf("Sent (%d,%d)\n", b.content().x, b.content().y);
}
return 0;
}
void delay(double seconds)
Wait for a certain number of seconds.
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
int main(int argc, char *argv[])