28 lines · plain
1.. SPDX-License-Identifier: GPL-2.02 3=====================4IIO Interfacing Tools5=====================6 71. Linux Kernel Tools8=====================9 10Linux Kernel provides some userspace tools that can be used to retrieve data11from IIO sysfs:12 13* lsiio: example application that provides a list of IIO devices and triggers14* iio_event_monitor: example application that reads events from an IIO device15 and prints them16* iio_generic_buffer: example application that reads data from buffer17* iio_utils: set of APIs, typically used to access sysfs files.18 192. LibIIO20=========21 22LibIIO is a C/C++ library that provides generic access to IIO devices. The23library abstracts the low-level details of the hardware, and provides a simple24yet complete programming interface that can be used for advanced projects.25 26For more information about LibIIO, please see:27https://github.com/analogdevicesinc/libiio28