Skip to content

Commit

Permalink
aww dang missed a ;
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Jun 3, 2024
1 parent 205376c commit 269b592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sensors/core/tasks/pressure_driver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ class MMR920 {
if (echo_this_time) {
auto response_pressure =
std::fabs(pressure) -
std::fabs(current_pressure_baseline_pa)
std::fabs(current_pressure_baseline_pa);
#ifdef USE_PRESSURE_MOVE
if (pressure_buffer_index < PRESSURE_SENSOR_BUFFER_SIZE) {
(*p_buff).at(pressure_buffer_index) = response_pressure;
Expand Down

0 comments on commit 269b592

Please sign in to comment.