Part of a series of examples on the different ways of using ports. See Port power tutorial.
#include <stdio.h>
#include "TargetVer1b.h"
Port p;
p.open("/target/raw/in");
BinPortable<Target> b;
while (true) {
p.read(b);
printf("Got (%d,%d)\n", b.content().x, b.content().y);
}
return 0;
}
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
int main(int argc, char *argv[])