Code Monkey home page Code Monkey logo

Comments (2)

JavaWantaBe avatar JavaWantaBe commented on June 21, 2024

Thanks Josip, but I am only anding the first byte, then appending the
second byte onto it after a shift of 8. So I am getting full 14bit
resolution.

output = ( (uint16_t)( read_val[0] & 0x1F ) << 8 ) + read_val[1];

On Tue, Jun 21, 2016 at 1:26 PM, Josip Basic [email protected]
wrote:

https://github.com/MikroElektronika/Click_Manometer_HSCMAND060PA3A3/blob/master/library/src/manometer_hw.c#L117

0x1F should be changed to 0x3F to correctly read 14-bit pressure that
HSC offers.

Regards,
Josip


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#1,
or mute the thread
https://github.com/notifications/unsubscribe/AAhnaer73sFEEAFoFvVwJOujB1d-k3FAks5qN8p_gaJpZM4I6oJu
.

from manometer_click.

j8asic avatar j8asic commented on June 21, 2024

You're getting 13-bit resolution: max(read_val[0] & 0x1F) + max(read_val[1]) = 7936 + 255.
Since 0x1F = 0b11111, you're missing one bit. You need 6 bits from read_val[0], as the status takes 2 bits. Thus I believe 0x3F = 0b111111 is needed.

from manometer_click.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.