Skip to content

Commit

Permalink
Merge pull request #428 from rosflight/PTT/fix_set_param_float
Browse files Browse the repository at this point in the history
Ptt/fix set param float
  • Loading branch information
bsutherland333 committed Jul 10, 2024
2 parents 650acc4 + 18e55a3 commit 0f7ef64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/param.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ bool Params::set_param_float(uint16_t id, float value)
if (id < PARAMS_COUNT && value != params.values[id].fvalue) {
params.values[id].fvalue = value;
change_callback(id);
RF_.comm_manager_.send_parameter_list();
RF_.comm_manager_.send_param_value(id);
return true;
}
return false;
Expand Down

0 comments on commit 0f7ef64

Please sign in to comment.