mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-19 16:49:06 +08:00
libtunes: addressing comments of #9117
This commit is contained in:
parent
6e1c495268
commit
9d3dfb7864
@ -89,7 +89,6 @@ int Tunes::set_control(const tune_control_s &tune_control)
|
||||
{
|
||||
// Sanity check
|
||||
if (tune_control.tune_id >= _default_tunes_size) {
|
||||
PX4_WARN("Tune ID not recognized.");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
||||
@ -73,9 +73,6 @@ public:
|
||||
*/
|
||||
Tunes(unsigned default_tempo, unsigned default_octave, unsigned default_note_length, NoteMode default_mode);
|
||||
|
||||
/**
|
||||
* Default destructor
|
||||
*/
|
||||
~Tunes() = default;
|
||||
|
||||
/**
|
||||
|
||||
@ -207,7 +207,11 @@ tune_control_main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
} else if (!strcmp(argv[myoptind], "libtest")) {
|
||||
tunes.set_control(tune_control);
|
||||
int ret = tunes.set_control(tune_control);
|
||||
|
||||
if (ret == -EINVAL) {
|
||||
PX4_WARN("Tune ID not recognized.");
|
||||
}
|
||||
|
||||
while (tunes.get_next_tune(frequency, duration, silence, strength) > 0) {
|
||||
PX4_INFO("frequency: %d, duration %d, silence %d, strength%d",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user