Skip to content

Commit

Permalink
might be buggy
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Jun 24, 2024
1 parent 030919b commit c609a56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//! [trait]: https://docs.rs/accelerometer/latest/accelerometer/trait.Accelerometer.html
//!

#![deny(missing_docs)]
// #![deny(missing_docs)]
#![deny(warnings)]
#![no_std]
#![forbid(unsafe_code)]
Expand All @@ -20,9 +20,9 @@ use core::marker::PhantomData;
pub use accelerometer::vector::F32x3;
pub use accelerometer::vector::I16x3;
pub use accelerometer::{Accelerometer, Error, ErrorKind, RawAccelerometer};
use cast::u16;
#[cfg(feature = "out_f32")]
use cast::{f32, i16};
use cast::f32;
use cast::i16;
use embedded_hal as hal;
use hal::i2c::I2c;
#[cfg(feature = "out_f32")]
Expand Down Expand Up @@ -694,9 +694,9 @@ impl<I2C: I2c> RawAccelerometer<I16x3> for Lis2dh12<I2C> {
self.read_regs(Register::OUT_X_L, &mut buf)?;

Ok(I16x3::new(
(u16(buf[0]) + (u16(buf[1]) << 8)) as i16,
(u16(buf[2]) + (u16(buf[3]) << 8)) as i16,
(u16(buf[4]) + (u16(buf[5]) << 8)) as i16,
(i16(buf[1]) << 8) | i16(buf[0]),
(i16(buf[3]) << 8) | i16(buf[2]),
(i16(buf[5]) << 8) | i16(buf[4]),
))
}
}
Expand Down

0 comments on commit c609a56

Please sign in to comment.