Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/thirdparty.repos
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
repositories:
ThirdParty/yaets:
type: git
url: https://github.com/fmrico/yaets.git
version: rolling
ThirdParty/EasyNavigation:
type: git
url: https://github.com/EasyNavigation/EasyNavigation.git
Expand Down
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# VS Code stuff
/.vscode/**

# Python stuff
**/__pycache__/

# Colcon mistakes
build/
install/
log/
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "nav_msgs/msg/odometry.hpp"

#include "tf2/LinearMath/Transform.hpp"
#include "tf2_ros/transform_broadcaster.h"
#include "tf2_ros/transform_broadcaster.hpp"

#include "easynav_core/LocalizerMethodBase.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
#include "nav_msgs/msg/occupancy_grid.hpp"
#include "std_srvs/srv/trigger.hpp"

#include "tf2_ros/buffer.h"
#include "tf2_ros/transform_listener.h"
#include "tf2_ros/buffer.hpp"
#include "tf2_ros/transform_listener.hpp"

#include "easynav_core/MapsManagerBase.hpp"
#include "easynav_simple_common/SimpleMap.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ TEST_F(SimpleMapsManagerTest, BasicDynamicUpdate)
manager->initialize(node, "test");

auto tf_buffer = easynav::RTTFBuffer::getInstance(node->get_clock());
tf2_ros::TransformListener tf_listener(*tf_buffer, node, true);
tf2_ros::TransformListener tf_listener(*tf_buffer, *node, true);

easynav::SimpleMap static_map;
static_map.initialize(30, 30, 0.1, -1.5, -1.5, 0.0);
Expand Down
Loading