Fix sdlog2 stopping on param write. Found by Severin Leuenberger

This commit is contained in:
Lorenz Meier 2015-05-13 15:46:35 +02:00
parent 890c3af13c
commit 6f94951050
1 changed files with 2 additions and 2 deletions

View File

@ -1975,10 +1975,10 @@ void handle_command(struct vehicle_command_s *cmd)
if (param == 1) {
sdlog2_start_log();
} else if (param == 0) {
} else if (param == -1) {
sdlog2_stop_log();
} else {
warnx("unknown storage cmd");
// Silently ignore non-matching command values, as they could be for params.
}
break;