Skip to content

Commit a77c37a

Browse files
Update repository for Fast DDS 3.0.0 compatibility
Signed-off-by: Lucia Echevarria <luciaechevarria@eprosima.com>
1 parent 947abed commit a77c37a

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

ddsrouter_core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ router.stop();
3838
3939
## Dependencies
4040
41-
* `fastrtps`
41+
* `fastdds`
4242
* `cpp_utils`
4343
4444
---

ddsrouter_core/project_settings.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ set(MODULE_SUMMARY
2424

2525
set(MODULE_FIND_PACKAGES
2626
fastcdr
27-
fastrtps
27+
fastdds
2828
cpp_utils
2929
ddspipe_core
3030
ddspipe_participants)
3131

32-
set(fastrtps_MINIMUM_VERSION "2.8")
32+
set(fastdds_MINIMUM_VERSION "3.0.0")
3333

3434
set(MODULE_DEPENDENCIES
3535
$<$<BOOL:${WIN32}>:iphlpapi$<SEMICOLON>Shlwapi>

ddsrouter_core/src/cpp/core/DdsRouter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ utils::ReturnCode DdsRouter::reload_configuration(
124124
utils::ReturnCode DdsRouter::start() noexcept
125125
{
126126
utils::ReturnCode ret = ddspipe_->enable();
127-
if (ret == utils::ReturnCode::RETCODE_OK)
127+
if (ret == utils::ReturnCode::OK)
128128
{
129129
logInfo(DDSROUTER, "Starting DDS Router.");
130130
}
@@ -135,7 +135,7 @@ utils::ReturnCode DdsRouter::start() noexcept
135135
utils::ReturnCode DdsRouter::stop() noexcept
136136
{
137137
utils::ReturnCode ret = ddspipe_->disable();
138-
if (ret == utils::ReturnCode::RETCODE_OK)
138+
if (ret == utils::ReturnCode::OK)
139139
{
140140
logInfo(DDSROUTER, "Stopping DDS Router.");
141141
}

ddsrouter_yaml/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<buildtool_depend>cmake</buildtool_depend>
1919

20-
<depend>fastrtps</depend>
20+
<depend>fastdds</depend>
2121
<depend>ddsrouter_core</depend>
2222
<depend>ddspipe_yaml</depend>
2323
<depend>cmake_utils</depend>

ddsrouter_yaml/project_settings.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ set(MODULE_SUMMARY
2525
set(MODULE_FIND_PACKAGES
2626
yaml-cpp
2727
fastcdr
28-
fastrtps
28+
fastdds
2929
cpp_utils
3030
ddspipe_core
3131
ddspipe_participants
3232
ddspipe_yaml
3333
ddsrouter_core)
3434

35-
set(fastrtps_MINIMUM_VERSION "2.8")
35+
set(fastdds_MINIMUM_VERSION "3.0.0")
3636

3737
set(MODULE_DEPENDENCIES
3838
$<$<BOOL:${WIN32}>:iphlpapi$<SEMICOLON>Shlwapi>

tools/ddsrouter_tool/project_settings.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ set(MODULE_SUMMARY
2525
set(MODULE_FIND_PACKAGES
2626
yaml-cpp
2727
fastcdr
28-
fastrtps
28+
fastdds
2929
cpp_utils
3030
ddspipe_core
3131
ddspipe_participants

0 commit comments

Comments
 (0)