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
use crate::config::{Configuration, HeaterProfile, IIRFilter, Oversampling, SensorMode};
use bitfield::bitfield;
use core::time::Duration;
bitfield! {
pub struct RawConfig([u8]);
impl Debug;
u8;
pub from into IIRFilter, filter, set_filter : calc_position(4, 4), calc_position(2, 4);
pub mode, set_mode: calc_position(1, 3), calc_position(0, 3);
pub from into Oversampling, pressure_oversampling, set_pressure_oversampling : calc_position(4, 3), calc_position(2, 3);
pub from into Oversampling, temperature_oversampling, set_temperature_oversampling: calc_position(7, 3), calc_position(5, 3);
pub from into Oversampling, humidity_oversampling, set_humidity_oversampling: calc_position(2, 1), calc_position(0, 1);
pub from into HeaterProfile, heater_profile, set_heater_profile: calc_position(3, 0), calc_position(0, 0);
pub run_gas, set_run_gas: calc_position(4, 0);
}
impl RawConfig<[u8; 5]> {
pub fn apply_config(&mut self, config: &Configuration) {
let config = config.clone();
if let Some(temperature_oversampling) = config.temperature_oversampling {
self.set_temperature_oversampling(temperature_oversampling);
}
if let Some(pressure_oversampling) = config.pressure_oversampling {
self.set_pressure_oversampling(pressure_oversampling);
}
if let Some(humidity_oversampling) = config.humidity_oversampling {
self.set_humidity_oversampling(humidity_oversampling);
}
if let Some(filter) = config.filter {
self.set_filter(filter);
}
if let Some(_gas_config) = config.gas_config {
self.set_run_gas(true);
self.set_heater_profile(HeaterProfile::Profile0);
}
}
}
bitfield! {
pub struct RawGasConfig([u8]);
impl Debug;
u8;
pub res_heat, _: 7, 0;
pub from into GasWaitDuration, gas_wait, _: calc_position(7, 1), calc_position(0, 1);
}
#[derive(Debug)]
pub struct GasWaitDuration(Duration);
impl From<u8> for GasWaitDuration {
fn from(val: u8) -> Self {
Self(Duration::from_millis(val as u64))
}
}
impl From<GasWaitDuration> for Duration {
fn from(value: GasWaitDuration) -> Self {
value.0
}
}
bitfield! {
pub struct CtrlMeasurment(u8);
impl Debug;
u8;
pub from into Oversampling, temperature_os, set_temperature_os: 7, 5;
pub from into Oversampling, pressure_os, set_pressure_os: 4, 2;
pub from into SensorMode, mode, set_mode: 1, 0;
}
bitfield! {
pub struct MeasurmentStatus(u8);
impl Debug;
u8;
pub bool, new_data, _: 7;
pub bool, gas_measuring, _: 6;
pub bool, measuring, _: 5;
pub gas_meas_index, _: 3, 0;
}
bitfield! {
pub struct RawData([u8]);
impl Debug;
pub u8, gas_range, _: calc_position(3, 14), calc_position(0, 14);
pub bool, gas_valid, _: calc_position(5, 14);
pub bool, heater_sable, _: calc_position(4, 14);
pub u16, from into GasADC, gas_adc, _: calc_position(7, 14), calc_position(0, 13);
pub u16, from into Humidity, humidity_adc, _: calc_position(7, 9), calc_position(0, 8);
pub u32, from into Measurment, temperature_adc, _: calc_position(7, 7), calc_position(0, 5);
pub u32, from into Measurment, pressure_adc, _: calc_position(7, 4), calc_position(0, 2);
pub u8, gas_meas_index, _: calc_position(3, 0), calc_position(0, 0);
pub bool, measuring, _: calc_position(5, 0);
pub bool, gas_measuring, _: calc_position(6, 0);
pub bool, new_data, _: calc_position(7, 0);
}
#[derive(Debug)]
pub struct Measurment(pub u32);
impl From<u32> for Measurment {
fn from(value: u32) -> Self {
let measurment_value = u32::from_be(value) >> 12;
Measurment(measurment_value)
}
}
#[derive(Debug)]
pub struct Humidity(pub u16);
impl From<u16> for Humidity {
fn from(value: u16) -> Self {
let humidity = u16::from_be(value);
Humidity(humidity)
}
}
#[derive(Debug)]
pub struct GasADC(pub u16);
impl From<u16> for GasADC {
fn from(value: u16) -> Self {
let [gas_r_msb, gas_r_lsb] = value.to_le_bytes();
let mut gas_adc: u16 = gas_r_msb.into();
gas_adc <<= 2;
gas_adc |= (gas_r_lsb >> 6) as u16;
GasADC(gas_adc)
}
}
fn calc_position(bit_position: usize, byte_offset: usize) -> usize {
byte_offset * 8 + bit_position
}
#[cfg(test)]
mod tests {
extern crate std;
use crate::config::Configuration;
use std::println;
use super::{calc_position, Humidity, Measurment, RawConfig, RawData};
use bitfield::bitfield;
bitfield! {
pub struct SampleData([u8]);
impl Debug;
pub u32, from into Measurment, m, _: calc_position(7, 2), calc_position(0, 0);
pub u16, from into Humidity, h, _: calc_position(7,4), calc_position(0, 3);
}
#[test]
fn test_raw_data() {
let data = [
0b1_0_0_0_0000u8,
0,
0b00101001,
0b10110011,
0b1111_0000,
0b00101001,
0b10110011,
0b1111_0000,
0b10110011,
0b00101001,
0,
0,
0,
0b10000001,
0b11_1_1_0011,
];
let expected_new_data = true;
let expected_gas_measuring = false;
let expected_measuring = false;
let expected_gas_meas_index = 0u8;
let expected_pressure = 0b0000_00000000_00101001_10110011_1111_u32;
let expected_temperature = 0b0000_00000000_00101001_10110011_1111_u32;
let expected_humidity = 0b10110011_00101001_u16;
let expected_gas_adc = 0b10000001_11u16;
let expected_gas_range = 0b011u8;
let expected_gas_valid = true;
let expected_heater_stable = true;
let raw_data = RawData(data);
assert!(raw_data.new_data() == expected_new_data);
assert!(raw_data.gas_measuring() == expected_gas_measuring);
assert!(raw_data.measuring() == expected_measuring);
assert!(raw_data.gas_meas_index() == expected_gas_meas_index);
assert!(raw_data.pressure_adc().0 == expected_pressure);
assert!(raw_data.temperature_adc().0 == expected_temperature);
assert!(raw_data.humidity_adc().0 == expected_humidity);
assert!(raw_data.gas_adc().0 == expected_gas_adc);
assert!(raw_data.gas_valid() == expected_gas_valid);
assert!(raw_data.heater_sable() == expected_heater_stable);
assert!(raw_data.gas_range() == expected_gas_range);
}
#[test]
fn test_measurment_and_humidty() {
let data = [0b00101001, 0b10110011, 0b1111_0000, 0b10110011, 0b00101001];
let expected_measurment_value = 0b0000_00000000_00101001_10110011_1111_u32;
let expected_humidity = 0b10110011_00101001_u16;
let measurment = SampleData(data);
assert!(expected_measurment_value == measurment.m().0);
assert!(expected_humidity == measurment.h().0);
}
#[test]
fn test_assemble() {
let mut result = 0;
let xlsb: u32 = 0b1111_0000;
let lsb = 0b10110011;
let msb = 0b00101001;
let expected_value = 0b101001_10110011_1111;
result |= xlsb >> 4;
println!("Adding xlsb {xlsb:b} results in: {result:b}");
result |= lsb << 4;
println!("Adding lsb {lsb:b} results in: {result:b}");
result |= msb << 12;
println!("Adding msb {msb:b} results in: {result:b}");
assert!(result == expected_value);
}
#[test]
fn test_raw_config() {
let mut raw_config = RawConfig([0u8; 5]);
let default_user_config = Configuration::default();
raw_config.apply_config(&default_user_config);
let raw_data = raw_config.0;
let expected_raw_data = [
0b_000_1_0000u8,
0b_0_0_000_001,
0b0,
0b_010_101_00,
0b000_001_00,
];
println!("Expeced data: {expected_raw_data:?}");
println!("Actual raw data: {raw_data:?}");
assert!(expected_raw_data == raw_data);
}
}