|
NAMEads111x —
driver for ADS101x and ADS111x i2c analog to digital
converters
SYNOPSISTo compile this driver into the kernel, place the following line in your kernel configuration file:device ads111x Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): ads111x_load="YES" DESCRIPTIONTheads111x driver provides support for the
ADS101x/ADS111x family of analog to digital converter (ADC) devices. The
supported devices are all similar to each other, varying in features such as
resolution and number of input channels. The devices offer a number of
configuration options which can be set via hints, FDT data, and
sysctl(8).
Sysctl(8) provides access to the voltage measurements made by the device. Each time the dev.ads111x.<unit>.<channel>.voltage variable is accessed for a given channel, the driver switches the chip's internal mux to choose the right input pins for that channel, directs it to make a single measurement, and returns the measured value in microvolts. The amount of time required to make the measurement is a function of the sampling rate configured for the device. While device is directed to make a single measurement, it still averages the input values for the same amount of time as it would to emit one sample if it were in continuous mode. For example, if the sample rate were configured as 125 samples per second, a single measurement would require 8 milliseconds. For devices that support multiple input pins, the device datasheet
describes mux settings to control how those pins are interpeted when making
either single-ended or differential measurements. There are eight possible
ways to combine the inputs from the four pins. The
For devices that include an alert output
pin, the SYSCTL VARIABLESSysctl variables are used to access the voltage measurements, and to change the configuration of the channels. All writeable variables may also be set as loader(8) tunables. Channel numbers in these sysctl variables range from 0 through 7.
HARDWARETheads111x driver provides support for the following
devices:
FDT CONFIGURATIONOn an fdt(4) based system, theads111x device is defined as a slave
device subnode of the i2c bus controller node. All properties documented in
the ads1015.txt bindings document can be used with the
ads111x device.
The following properties are required in the
Specific channels can be configured by adding child nodes to the
Example including channel configurationadc@48 { compatible = "ti,ads1115"; reg = <0x48>; status = "okay"; #address-cells = <1>; #size-cells = <0>; channel@6 { reg = <6>; ti,gain = <3>; ti,datarate = <4>; }; channel@7 { reg = <7>; ti,gain = <1>; ti,datarate = <7>; }; }; HINTS CONFIGURATIONOn a device.hints(5) based system, such asMIPS , these values are
configurable for ads111x :
If no channels are configured, sysctl variables will be created for all possible channels supported by the device type, otherwise only the specified channels are created. SEE ALSOfdt(4), sysctl(8)HISTORYTheads111x driver first appeared in
FreeBSD 13.0.
Visit the GSP FreeBSD Man Page Interface. |