- Timestamp:
- Dec 16, 2020, 4:50:34 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cmake-modules/FlairUseFile.cmake
r365 r378 75 75 SET(FLAIR_LIBRARIES ${FLAIR_LIBRARY_DIR}/libHdsSensorActuator.a ${FLAIR_LIBRARIES}) 76 76 endif() 77 if("${CMAKE_SYSTEM_PROCESSOR_DEFAULTTUNE}" MATCHES "core2-64") 78 SET(FLAIR_LIBRARIES ${FLAIR_LIBRARIES} sumo) 79 endif() 77 80 ENDIF (FLAIR_USE_SENSOR_ACTUATOR) 78 81 -
trunk/lib/FlairMeta/src/SimuUgv.h
r377 r378 5 5 /*! 6 6 * \file SimuUgv.h 7 * \brief Class defining a simulation x4 uav7 * \brief Class defining a simulation ugv 8 8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253 9 9 * \date 2020/12/16 -
trunk/lib/FlairMeta/src/UgvFactory.cpp
r377 r378 19 19 #include "FrameworkManager.h" 20 20 #include "SimuUgv.h" 21 #include "SumoUgv.h" 21 22 22 23 … … 52 53 } 53 54 return new SimuUgv(name, simu_id); 54 }/* else if (type.compare(0, 7, "x8_simu") == 0) { 55 int simu_id = 0; 56 if (type.size() > 7) { 57 simu_id = atoi(type.substr(7, type.size() - 7).c_str()); 58 } 59 return new SimuX8(name, simu_id,options, multiplex); 60 }*/ else { 55 } else if (type.compare(0, 4, "sumo") == 0) { 56 return new SumoUgv(name); 57 } else { 61 58 getFrameworkManager()->Err("UGV type %s unknown\n", type.c_str()); 62 59 return NULL; -
trunk/lib/FlairSensorActuator/CMakeLists.txt
r338 r378 9 9 ${CMAKE_CURRENT_SOURCE_DIR}/../FlairVisionFilter/src 10 10 ${CMAKE_SYSROOT}/usr/include/vrpn 11 ${CMAKE_SYSROOT}/usr/include/sumo 11 12 ) 12 13 -
trunk/lib/FlairSensorActuator/src/SimulatedUgvControls.h
r377 r378 15 15 16 16 #include <UgvControls.h> 17 #include <Thread.h>18 17 19 18 namespace flair {
Note:
See TracChangeset
for help on using the changeset viewer.