Skip to content

Commit

Permalink
Simplify docs for FullScaleRange. (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Jan 30, 2024
1 parent 9cc7956 commit ae2b28f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/types.rs
Expand Up @@ -147,18 +147,18 @@ pub enum ComparatorQueue {
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Ord, PartialOrd, Hash)]
#[allow(non_camel_case_types)]
pub enum FullScaleRange {
/// The measurable range is ±6.144V.
/// ±6.144V
Within6_144V,
/// The measurable range is ±4.096V.
/// ±4.096V
Within4_096V,
#[default]
/// The measurable range is ±2.048V. (default)
#[default]
Within2_048V,
/// The measurable range is ±1.024V.
/// ±1.024V
Within1_024V,
/// The measurable range is ±0.512V.
/// ±0.512V
Within0_512V,
/// The measurable range is ±0.256V.
/// ±0.256V
Within0_256V,
}

Expand Down

0 comments on commit ae2b28f

Please sign in to comment.