We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sometimes a call to the pmod_nav.erl server yields a negative value for the press_out register while temp_out is correct.
press_out
temp_out
Call : gen_server:call(Pid, {read, alt, [press_out, temp_out], #{}}).
gen_server:call(Pid, {read, alt, [press_out, temp_out], #{}}).
Result : [-1754.43994140625,34.041666666666664]
[-1754.43994140625,34.041666666666664]
Meanwhile in most cases the value will be a little over 1000 i.e. correct pressure in hPa. Are we not initializing it correctly?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes a call to the pmod_nav.erl server yields a negative value for the
press_out
register whiletemp_out
is correct.Call :
gen_server:call(Pid, {read, alt, [press_out, temp_out], #{}}).
Result :
[-1754.43994140625,34.041666666666664]
Meanwhile in most cases the value will be a little over 1000 i.e. correct pressure in hPa. Are we not initializing it correctly?
The text was updated successfully, but these errors were encountered: