accesio / aiousb-alpha

DEPRECATED repository used during aiousb-linux development. Please switch to using aiousb-linux
0 stars 0 forks source link

aiousb-alpha is deprecated. Please see https://github.com/accesio/aiousb-linux

aiousb

aiousb is the Linux implementation of the ACCES I/O USB API as a linux kernel module and library.

Install needed packages

apt install git cmake build-essential libudev-dev

Obtaining the source

git clone https://github.com/accesio/aiousb-alpha aiousb

Build and install

mkdir build
cd build
cmake ..
make
sudo make install

Using the library

To use the library include aiousb.h in your program. The first call into the library must be AiousbInit(). All of the functions are documented in the ACCES I/O USB API

The source code in the samples directory is intended as a guide. The source code in the test directory is not intended for general use.