1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
use core::convert::{From, TryFrom};
use core::fmt;
use modular_bitfield::prelude::*;

/** Representation of the Sensor Configuration Register.

The Sensor Configuration Register of the TCN75A is eight bits wide and consists of
6 separate fields. Fields are accessed using getters and `set_*` methods provided by the
[`modular_bitfield`] crate. See the [datasheet] for information on field meanings.

# Examples

Each field has a power-of-two number of valid options. Therefore the `set_*` methods should never
panic:

```
# use tcn75a::{ConfigReg, Resolution};
let mut cfg = ConfigReg::new();
assert_eq!(cfg.resolution(), Resolution::Bits9);

cfg.set_resolution(Resolution::Bits12);
assert_eq!(cfg.resolution(), Resolution::Bits12);
```

Using `set_*_checked` methods and [`unwrap`ping][`unwrap`] the `Result` should also be zero-cost:

```
# use tcn75a::{ConfigReg, Resolution};
let mut cfg = ConfigReg::new();
assert_eq!(cfg.resolution(), Resolution::Bits9);

cfg.set_resolution_checked(Resolution::Bits12).unwrap();
assert_eq!(cfg.resolution(), Resolution::Bits12);
```

[`modular_bitfield`]: ../modular_bitfield/index.html
[`unwrap`]: https://doc.rust-lang.org/nightly/core/result/enum.Result.html#method.unwrap
[`ConfigReg`]: ./struct.ConfigReg.html
[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
*/
#[bitfield]
#[derive(Debug, PartialEq, Eq, Default, Clone, Copy)]
pub struct ConfigReg {
    #[bits = 1]
    pub shutdown: Shutdown,
    #[bits = 1]
    pub comp_int: CompInt,
    #[bits = 1]
    pub alert_polarity: AlertPolarity,
    #[bits = 2]
    pub fault_queue: FaultQueue,
    #[bits = 2]
    pub resolution: Resolution,
    #[bits = 1]
    pub one_shot: OneShot,
}

/** Error type due to failed conversions from u8 into Configuration Register fields.

# Examples

This type cannot be created by the user. The main use of this type is to handle invalid
user-supplied config register values for the [`Resolution`] and [`FaultQueue`] Configuration
Registers fields:

```
# use std::convert::Into;
# use std::convert::TryInto;
# use tcn75a::Resolution;
# use tcn75a::ConfigRegValueError;
fn main() -> Result<(), ConfigRegValueError> {
    let res: Resolution = 9.try_into()?; // Fake user-supplied input. Always succeeds.
    Ok(())
}
```

[`Resolution`]: ./enum.Resolution.html
[`FaultQueue`]: ./enum.FaultQueue.html
*/
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub struct ConfigRegValueError(());

impl fmt::Display for ConfigRegValueError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "value of of range for config register field")
    }
}

/** One-Shot bit in the Sensor Configuration Register.

Consult the TCN75A [datasheet] for information on the meanings of each variant.
Variant names will be similar to the datasheet (changes in the datasheet names
in subsequent silicon revisions may constitute a breaking API change).

[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
*/
#[derive(BitfieldSpecifier, Debug, PartialEq, Eq, Copy, Clone)]
pub enum OneShot {
    Disabled = 0,
    Enabled,
}

/** ADC Resolution bits in the Sensor Configuration Register.

Consult the TCN75A [datasheet] for information on the meanings of each variant.
Variant names will be similar to the datasheet (changes in the datasheet names or resolutions in
subsequent silicon revisions may constitute a breaking API change. As of this writing, the
supported resolutions are `9`, `10`, `11`, and `12` bits, corresponding to `0.5`, `0.25`, `0.125`,
and `0.0625` degrees Celsius precision).

# Examples

You can convert the `u8` values `9`, `10`, `11`, and `12` into a [`Resolution`] and
vice-versa using [`TryFrom<u8>`][`TryFrom`] and [`From<Resolution>`][`From`] respectively:

```
# use std::convert::Into;
# use std::convert::TryInto;
# use tcn75a::Resolution;
# use tcn75a::ConfigRegValueError;
let res: Resolution = 9u8.try_into().unwrap();
let res_as_int: u8 = Resolution::Bits10.into();
let try_res_fail: Result<Resolution, ConfigRegValueError> = 13u8.try_into();

assert_eq!(res, Resolution::Bits9);
assert_eq!(res_as_int, 10u8);
assert!(try_res_fail.is_err());
```

[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
[`Resolution`]: ./enum.Resolution.html
[`TryFrom`]: https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html
[`From`]: https://doc.rust-lang.org/nightly/core/convert/trait.From.html
*/
#[derive(BitfieldSpecifier, Debug, PartialEq, Eq, Copy, Clone)]
pub enum Resolution {
    Bits9 = 0,
    Bits10,
    Bits11,
    Bits12,
}

impl From<Resolution> for u8 {
    fn from(res: Resolution) -> u8 {
        match res {
            Resolution::Bits9 => 9,
            Resolution::Bits10 => 10,
            Resolution::Bits11 => 11,
            Resolution::Bits12 => 12,
        }
    }
}

impl TryFrom<u8> for Resolution {
    type Error = ConfigRegValueError;

    fn try_from(value: u8) -> Result<Resolution, Self::Error> {
        match value {
            9 => Ok(Resolution::Bits9),
            10 => Ok(Resolution::Bits10),
            11 => Ok(Resolution::Bits11),
            12 => Ok(Resolution::Bits12),
            _ => Err(ConfigRegValueError(())),
        }
    }
}

/** Fault Queue bits in the Sensor Configuration Register.

Consult the TCN75A [datasheet] for information on the meanings of each variant.
Variant names will be similar to the datasheet (changes in the datasheet names
in subsequent silicon revisions may constitute a breaking API change).

# Examples

You can convert the `u8` values `1`, `2`, `4`, and `6` into a [`FaultQueue`] and
vice-versa using [`TryFrom<u8>`][`TryFrom`] and [`From<FaultQueue>`][`From`] respectively:

```
# use std::convert::Into;
# use std::convert::TryInto;
# use tcn75a::FaultQueue;
# use tcn75a::ConfigRegValueError;
let fq: FaultQueue = 1u8.try_into().unwrap();
let fq_as_int: u8 = FaultQueue::Two.into();
let try_fq_fail: Result<FaultQueue, ConfigRegValueError> = 8u8.try_into();

assert_eq!(fq, FaultQueue::One);
assert_eq!(fq_as_int, 2u8);
assert!(try_fq_fail.is_err());
```

[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
[`FaultQueue`]: ./enum.FaultQueue.html
[`TryFrom`]: https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html
[`From`]: https://doc.rust-lang.org/nightly/core/convert/trait.From.html

[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
*/
#[derive(BitfieldSpecifier, Debug, PartialEq, Eq, Copy, Clone)]
pub enum FaultQueue {
    One = 0,
    Two,
    Four,
    Six,
}

impl From<FaultQueue> for u8 {
    fn from(fq: FaultQueue) -> u8 {
        match fq {
            FaultQueue::One => 1,
            FaultQueue::Two => 2,
            FaultQueue::Four => 4,
            FaultQueue::Six => 6,
        }
    }
}

impl TryFrom<u8> for FaultQueue {
    type Error = ConfigRegValueError;

    fn try_from(value: u8) -> Result<FaultQueue, Self::Error> {
        match value {
            1 => Ok(FaultQueue::One),
            2 => Ok(FaultQueue::Two),
            4 => Ok(FaultQueue::Four),
            6 => Ok(FaultQueue::Six),
            _ => Err(ConfigRegValueError(())),
        }
    }
}

/** Alert Polarity bit in the Sensor Configuration Register.

Consult the TCN75A [datasheet] for information on the meanings of each variant.
Variant names will be similar to the datasheet (changes in the datasheet names
in subsequent silicon revisions may constitute a breaking API change).

[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
*/
#[derive(BitfieldSpecifier, Debug, PartialEq, Eq, Copy, Clone)]
pub enum AlertPolarity {
    ActiveLow = 0,
    ActiveHigh,
}

/** Comp/Int bit in the Sensor Configuration Register.

Consult the TCN75A [datasheet] for information on the meanings of each variant.
Variant names will be similar to the datasheet (changes in the datasheet names
in subsequent silicon revisions may constitute a breaking API change).

[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
*/
#[derive(BitfieldSpecifier, Debug, PartialEq, Eq, Copy, Clone)]
pub enum CompInt {
    Comparator = 0,
    Interrupt,
}

/** Shutdown bit in the Sensor Configuration Register.

Consult the TCN75A [datasheet] for information on the meanings of each variant.
Variant names will be similar to the datasheet (changes in the datasheet names
in subsequent silicon revisions may constitute a breaking API change).

[datasheet]: http://ww1.microchip.com/downloads/en/DeviceDoc/21935D.pdf
*/
#[derive(BitfieldSpecifier, Debug, PartialEq, Eq, Copy, Clone)]
pub enum Shutdown {
    Disable = 0,
    Enable,
}

#[cfg(test)]
mod tests {
    use super::*;
    use core::convert::TryInto;
    use core::mem::size_of;

    #[test]
    fn test_size() {
        assert_eq!(size_of::<ConfigReg>(), 1);
    }

    #[test]
    fn test_two_fields() {
        let mut cfg: ConfigReg = Default::default();
        cfg.set_shutdown(Shutdown::Disable);
        cfg.set_comp_int(CompInt::Interrupt);

        let val = u8::from_le_bytes(cfg.into_bytes().try_into().unwrap());

        assert_eq!(val, 0b0000010);
    }

    #[test]
    fn test_2bit_val() {
        let mut cfg = ConfigReg::new();
        cfg.set_resolution(Resolution::Bits12);
        cfg.set_fault_queue(FaultQueue::Six);

        let val = u8::from_le_bytes(cfg.into_bytes().try_into().unwrap());
        assert_eq!(val, 0b01111000);
    }

    #[test]
    fn test_reset_defaults() {
        let cfg = ConfigReg::new();

        assert_eq!(cfg.shutdown(), Shutdown::Disable);
        assert_eq!(cfg.comp_int(), CompInt::Comparator);
        assert_eq!(cfg.alert_polarity(), AlertPolarity::ActiveLow);
        assert_eq!(cfg.resolution(), Resolution::Bits9);
        assert_eq!(cfg.fault_queue(), FaultQueue::One);
        assert_eq!(cfg.one_shot(), OneShot::Disabled);

        let val = u8::from_le_bytes(cfg.into_bytes().try_into().unwrap());
        assert_eq!(val, 0);
    }

    #[test]
    fn test_fallible_conversions() {
        let good_res: Result<Resolution, ConfigRegValueError> = 9.try_into();
        let good_fault: Result<FaultQueue, ConfigRegValueError> = 2.try_into();
        let bad_res: Result<Resolution, ConfigRegValueError> = 13.try_into();
        let bad_fault: Result<FaultQueue, ConfigRegValueError> = 5.try_into();

        assert_eq!(good_res, Ok(Resolution::Bits9));
        assert_eq!(good_fault, Ok(FaultQueue::Two));
        assert_eq!(bad_res, Err(ConfigRegValueError(())));
        assert_eq!(bad_fault, Err(ConfigRegValueError(())));
    }
}