From 52755c893d7c2a480d4c9901ac6dadcf3a79c047 Mon Sep 17 00:00:00 2001 From: Grant Morphett Date: Tue, 24 May 2016 10:23:37 +1000 Subject: [PATCH] Rover: Print message when running skid steering SITL --- libraries/SITL/SIM_Rover.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/SITL/SIM_Rover.cpp b/libraries/SITL/SIM_Rover.cpp index 173645604a..bf0599a885 100644 --- a/libraries/SITL/SIM_Rover.cpp +++ b/libraries/SITL/SIM_Rover.cpp @@ -20,6 +20,7 @@ #include "SIM_Rover.h" #include +#include namespace SITL { @@ -37,6 +38,7 @@ SimRover::SimRover(const char *home_str, const char *frame_str) : skid_steering = strstr(frame_str, "skid") != NULL; if (skid_steering) { + printf("SKID Steering Rover Simulation Started\n"); // these are taken from a 6V wild thumper with skid steering, // with a sabertooth controller max_accel = 14;