From cd92f971d49a705dcef056996cad8856a259c9df Mon Sep 17 00:00:00 2001 From: k-a-z-u Date: Wed, 6 Jun 2018 11:17:15 +0200 Subject: [PATCH] minor changes --- walky/CMakeLists.txt | 7 ------- walky/ParticleWalkNavMesh.h | 4 +++- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/walky/CMakeLists.txt b/walky/CMakeLists.txt index 6f6ad97..90fb002 100644 --- a/walky/CMakeLists.txt +++ b/walky/CMakeLists.txt @@ -1,8 +1,3 @@ -# Usage: -# Create build folder, like RC-build next to RobotControl and WifiScan folder -# CD into build folder and execute 'cmake -DCMAKE_BUILD_TYPE=Debug ../RobotControl' -# make - CMAKE_MINIMUM_REQUIRED(VERSION 2.8) # select build type @@ -81,8 +76,6 @@ ADD_DEFINITIONS( -g3 -O0 - - -march=native -DWITH_TESTS diff --git a/walky/ParticleWalkNavMesh.h b/walky/ParticleWalkNavMesh.h index 273bdea..cd0c6a2 100644 --- a/walky/ParticleWalkNavMesh.h +++ b/walky/ParticleWalkNavMesh.h @@ -30,6 +30,7 @@ #include #include +#include #include #include @@ -101,7 +102,8 @@ public: MyControl ctrl; PoseDetection* poseDetect = new PoseDetection(); - StepDetection* stepDetect = new StepDetection(); // TODO + StepDetection* stepDetect = new StepDetection(); + //StepDetection2* stepDetect = new StepDetection2(); TurnDetection* turnDetect = new TurnDetection(poseDetect); public: