Skip to content

Commit

Permalink
Iron sync 2.7.1 August 4 (#627)
Browse files Browse the repository at this point in the history
* 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 iron for release 2.7.1

---------

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 3c7e4b9 commit c8cb956
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ install(DIRECTORY include/

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

install(DIRECTORY config
Expand Down
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.7.0</version>
<version>2.7.1</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 c8cb956

Please sign in to comment.