Skip to content

Commit

Permalink
ackermann: fixed logging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chfriedrich98 committed Jul 5, 2024
1 parent 6730d22 commit a619dee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions ROMFS/px4fmu_common/init.d/rc.rover_ackermann_apps
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#!/bin/sh
# Standard apps for a ackermann drive rover.

# Start the attitude and position estimator.
ekf2 start &

# Start rover ackermann drive controller.
rover_ackermann start

Expand Down
3 changes: 2 additions & 1 deletion src/modules/rover_ackermann/RoverAckermann.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ void RoverAckermann::Run()
if (should_exit()) {
ScheduleClear();
exit_and_cleanup();
return;
}

// uORB subscriber updates
Expand Down Expand Up @@ -203,7 +204,7 @@ int RoverAckermann::print_usage(const char *reason)
PRINT_MODULE_DESCRIPTION(
R"DESCR_STR(
### Description
Rover state machine.
Rover ackermann module.
)DESCR_STR");

PRINT_MODULE_USAGE_NAME("rover_ackermann", "controller");
Expand Down

0 comments on commit a619dee

Please sign in to comment.