I/O server device drivers🔗
The VisionAppster SDK comes with a reference implementation for an I/O
server. It is in sdk/va-ioserver
under the
VisionAppster installation directory and contains build and usage
instructions. To build a new I/O server you need to
implement the functions declared in va_io_device.h.
save the implementation to e.g.
sdk/va-ioserver/devices/fancy_gadget_io_device.c
.build the server:
make IO_DEVICE=fancy_gadget
.
The server is implemented in C using POSIX socket APIs. It has only been
tested on Linux. Please consult sdk/va-ioserver/README.md
for
detailed instructions.