Skip to content

Commit

Permalink
Fix Params::set_param_float sending the entire parameter list
Browse files Browse the repository at this point in the history
  • Loading branch information
avtoku authored and bsutherland333 committed Jul 10, 2024
1 parent 650acc4 commit 18e55a3
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 18e55a3

Please sign in to comment.