-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sensors report 0 everywhere since version 0.3 #29
Comments
Interesting. Which sensor? The accelerometer or the magnetometer? What about the temperature sensor? |
Thanks, I'll reexamine those two. I'm seeing trouble with both sensors (and haven't looked at the temperature sensor because that was unavailable in the last good version) By the current stage of bisection I've come to think that I'm probably just doing the setup wrong (because that's something I have to vary in the course of bisection, causing variation in addition to the history being tested). If nothing else, the outcome of this should be at least an observation of how the setup can go wrong, and unless it adds too much state, possibly a new error state indicating that what you are trying to read is not set up in a way that is being read does not produce any sensible data (for I'm definitely not testing in a zero-g environment). |
So this is my test code that changed its behavior: let mut device = Lsm303agr::new_with_i2c(i2c::I2CDevice::new(i2cdev));
device.init().unwrap();
// device.set_accel_mode(&mut riot_wrappers::ztimer::Clock::usec(), AccelMode::Normal).unwrap();
// device.set_accel_odr(&mut riot_wrappers::ztimer::Clock::usec(), Hz50).unwrap();
println!("{:?}", device.acceleration()); It changed from printing something to printing Should this be working, or is this a usage error? [edit: Commented out the set_ lines because they don't make the difference crossing the referenced commit] |
As I can also induce the breakage in the old version by making the write_read behave like embedded-hal specifies, it is now my working hypothesis that the sensor requires a stop condition before reading. The hardware I'm working with (nrf52 wrapped in RIOT OS) handles stop conditions pretty automatically, so any subtle code change (possibly even alignment of the TEXT section) can make the difference between whether or not the read after the write happens early enough that a STOP condition is set, or is done without a STOP. Verifying... |
Alternative hypothesis, now that I have debug wires and an oscilloscope on it: The hardware won't write from flash, only from RAM. As the writes are silently null (instead of asking the register name), the null register is selected, and then all answers are null. That gets me up to 0.3, and is clearly an implementation error on the OS side. Keeping this open and updated until I've ruled out that the remaining trouble may not be coming from this crate (but at this point it's becoming unlikely). |
This was eventually resolved by three different bugs in the underlying driver:
At any rate, no fault of this crate (if anyone were to play a game of blame's I'd split it equally between Nordic for some weird choices in the hardware, RIOT for having buggy drivers and myself for not doing more diverse tests) -- sorry for the noise. |
No worries. I am glad for the thorough investigation. |
Something changed between 0.2.2 and 0.3 that makes the sensor on a microbit-v2 report all-zeros on every measurement.
(As I had 0.2.2 last time I updated and used this to develop my embedded-hal 1.0 implementation, this made me doubt my sanity -- but indeed already 0.3 has the trouble, which is embedded-hal 0.2 based.)
I have yet to bisect between 0.3 and 0.2.2 (maybe with some more linearity than regular bisection to avoid editing back and forth through API changes), and will keep this updated.
The text was updated successfully, but these errors were encountered: