diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -11,14 +11,15 @@ //! - Read the last measurement made in continuous conversion mode. See: [`read()`][read_cont]. //! - Set the data rate. See: [`set_data_rate()`]. //! - Set the full-scale range (gain amplifier). See [`set_full_scale_range()`]. -//! - Set the low and high thresholds. See: [`set_high_threshold_raw()`]. //! - Read whether a measurement is in progress. See: [`is_measurement_in_progress()`]. -//! - Set the comparator mode. See: [`set_comparator_mode()`]. -//! - Set the comparator polarity. See: [`set_comparator_polarity()`]. -//! - Set the comparator latching. See: [`set_comparator_latching()`]. -//! - Set the comparator queue. See: [`set_comparator_queue()`]. -//! - Disable the comparator. See: [`disable_comparator()`]. //! - Set the ALERT/RDY pin to be used as conversion-ready pin. See: [`use_alert_rdy_pin_as_ready()`]. +//! - Comparator: +//! - Set the low and high thresholds. See: [`set_high_threshold_raw()`]. +//! - Set the comparator mode. See: [`set_comparator_mode()`]. +//! - Set the comparator polarity. See: [`set_comparator_polarity()`]. +//! - Set the comparator latching. See: [`set_comparator_latching()`]. +//! - Set the comparator queue. See: [`set_comparator_queue()`]. +//! - Disable the comparator. See: [`disable_comparator()`]. //! //! [`into_continuous()`]: struct.Ads1x1x.html#method.into_continuous //! [read_os]: struct.Ads1x1x.html#method.read |