tree: 1a2ee6255640a928fa47fc4bd4da4380848df0bf [path history] [tgz]
  1. .gitignore
  2. ad9361-iiostream.c
  3. ad9371-iiostream.c
  4. adrv9009-iiostream.c
  5. dummy-iiostream.c
  6. iio-monitor.c
  7. Makefile
  8. README.md
examples/README.md

libiio Examples

The libiio is a cross platform library for interfacing with Linux IIO devices.

These are some primitive examples of using the libiio library. These are not compiled or tested during a nominal library cmake/make process and must be compiled separately. A linux Makefile is included. While the libiio library is tested on many operating systems, these examples are only tested on Linux.

More examples using all languages supported by libiio are encouraged to be added here. When adding a new example, please update this list.

ad9361-iiostream

  • Language : C

This example libiio program is meant to exercise the features of IIO functionality on the AD9361 found on the AD-FMCOMMS2-EBZ, AD-FMCOMMS3-EBZ, and the ADRV9361-Z7035 RF SOM. It takes the uri as the only argument. for example : ./ad9361-iiostream usb:3.32.5

ad9371-iiostream

  • Language : C

This example libiio program is meant to exercise the features of IIO functionality on the AD9371. It takes the uri as the only argument. for example : ./ad9371-iiostream ip:192.168.2.1

adrv9009-iiostream

  • Language : C

This example libiio program is meant to exercise the features of IIO functionality on the ADRV9009. It takes the uri as the only argument. for example : ./adrv9009-iiostream ip:192.168.2.1

dummy-iiostream

  • Language : C

This example libiio program is meant to exercise the features of IIO present in the sample dummy IIO device in the linux kernel. For buffered access it relies on the hrtimer trigger but could be modified to use the sysfs trigger. No hardware should be required to run this program.

iio-monitor

  • Language : C
  • Requirements : Curses Development Kit (libcdk5-dev); pthreads; ncurses; libiio

A Curses based application which implements real time monitoring of IIO non-buffer samples.