Skip to content

Commit 3ee73b7

Browse files
authored
Address segfault in controller coordinator (#68)
* Fixed stale demos * Update package versions * Fix obsolete tf2 header * Added a coordinator to activate controllers/hardware * Address pr comments * Fix segfault in coordinator on failure service * bump version * Address linter errors and update gersemi * dumb
1 parent 289f6e0 commit 3ee73b7

File tree

35 files changed

+82
-55
lines changed

35 files changed

+82
-55
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
types_or: [c++, c]
1818

1919
- repo: https://github.com/BlankSpruce/gersemi
20-
rev: 0.13.5
20+
rev: 0.21.0
2121
hooks:
2222
- id: gersemi
2323

auv_control_demos/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog for package auv_control_demos
22

3+
## 0.3.1 (2025-07-09)
4+
35
## 0.3.0 (2025-06-07)
46

57
## 0.2.1 (2025-06-03)

auv_control_demos/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package format="3">
44

55
<name>auv_control_demos</name>
6-
<version>0.3.0</version>
6+
<version>0.3.1</version>
77
<description>Example package that includes demos for using auv_controllers in individual and chained modes</description>
88

99
<maintainer email="[email protected]">Colin Mitchell</maintainer>

auv_control_msgs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog for package auv_control_msgs
22

3+
## 0.3.1 (2025-07-09)
4+
35
## 0.3.0 (2025-06-07)
46

57
## 0.2.1 (2025-06-03)

auv_control_msgs/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package format="3">
44

55
<name>auv_control_msgs</name>
6-
<version>0.3.0</version>
6+
<version>0.3.1</version>
77
<description>Custom messages for AUV controllers</description>
88

99
<maintainer email="[email protected]">Rakesh Vivekanandan</maintainer>

auv_controllers/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog for package auv_controllers
22

3+
## 0.3.1 (2025-07-09)
4+
35
## 0.3.0 (2025-06-07)
46

57
- Implements the controller coordinator

auv_controllers/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package format="3">
44

55
<name>auv_controllers</name>
6-
<version>0.3.0</version>
6+
<version>0.3.1</version>
77
<description>Meta package for auv_controllers</description>
88

99
<maintainer email="[email protected]">Evan Palmer</maintainer>

controller_common/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog for package controller_common
22

3+
## 0.3.1 (2025-07-09)
4+
35
## 0.3.0 (2025-06-07)
46

57
## 0.2.1 (2025-06-03)

controller_common/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ target_sources(
1818
PRIVATE src/common.cpp
1919
PUBLIC
2020
FILE_SET HEADERS
21-
BASE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include
22-
FILES ${CMAKE_CURRENT_SOURCE_DIR}/include/controller_common/common.hpp
21+
BASE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include
22+
FILES
23+
${CMAKE_CURRENT_SOURCE_DIR}/include/controller_common/common.hpp
2324
)
2425
target_compile_features(controller_common PUBLIC cxx_std_23)
2526
target_link_libraries(

controller_common/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package format="3">
44

55
<name>controller_common</name>
6-
<version>0.3.0</version>
6+
<version>0.3.1</version>
77
<description>Common interfaces for controllers used in this project</description>
88

99
<maintainer email="[email protected]">Evan Palmer</maintainer>

0 commit comments

Comments
 (0)