Skip to content

Commit

Permalink
Humble sync August 4 (#626)
Browse files Browse the repository at this point in the history
* fixing 588 (#589)

* In addScan, fix if-condition for processor_type (#610)

Co-authored-by: patrick.christoph.sowinski <patrick.christoph.sowinski@continental-corporation.com>

* exclude lifelong launch file (#624)

* bumping humble to 2.6.5 for release

---------

Co-authored-by: Patrick Sowinski <patricksowinski@gmx.de>
Co-authored-by: patrick.christoph.sowinski <patrick.christoph.sowinski@continental-corporation.com>
  • Loading branch information
3 people committed Aug 4, 2023
1 parent f66f982 commit 72b6f61
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 14 deletions.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ install(TARGETS async_slam_toolbox_node
map_and_localization_slam_toolbox_node
merge_maps_kinematic
${libraries}
kartoSlamToolbox
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION lib/${PROJECT_NAME}
Expand All @@ -213,6 +214,7 @@ install(DIRECTORY include/

install(DIRECTORY launch
DESTINATION share/${PROJECT_NAME}
PATTERN "lifelong_launch.py" EXCLUDE
)

install(DIRECTORY config
Expand All @@ -224,7 +226,7 @@ install(FILES solver_plugins.xml rviz_plugins.xml
)

ament_export_include_directories(include)
ament_export_libraries(${libraries})
ament_export_libraries(${libraries} kartoSlamToolbox)
ament_export_dependencies(${dependencies})
ament_export_targets(SlamToolboxPlugin HAS_LIBRARY_TARGET)
ament_package()
11 changes: 0 additions & 11 deletions lib/karto_sdk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,3 @@ target_link_libraries(kartoSlamToolbox ${Boost_LIBRARIES} TBB::tbb)
install(DIRECTORY include/
DESTINATION include/
)

install(TARGETS kartoSlamToolbox
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION lib/${PROJECT_NAME}
)

ament_export_libraries(kartoSlamToolbox)
ament_export_include_directories(include)
ament_export_dependencies(${dependencies})
ament_package()
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>slam_toolbox</name>
<version>2.6.4</version>
<version>2.6.5</version>
<description>
This package provides a sped up improved slam karto with updated SDK and visualization and modification toolsets
</description>
Expand Down
2 changes: 1 addition & 1 deletion src/slam_toolbox_localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ LocalizedRangeScan * LocalizationSlamToolbox::addScan(
{
boost::mutex::scoped_lock l(pose_mutex_);

if (PROCESS_LOCALIZATION && process_near_pose_) {
if (processor_type_ == PROCESS_LOCALIZATION && process_near_pose_) {
processor_type_ = PROCESS_NEAR_REGION;
}

Expand Down

0 comments on commit 72b6f61

Please sign in to comment.