-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add pre commit * Add external antenna * Rename extenal antena -> teltonika * Set GPS uptade rate to 1Hz * Add ns to tf frame * Update name * Mounting point
- Loading branch information
1 parent
59f8172
commit b29f563
Showing
35 changed files
with
536 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
name: ROS2 test build | ||
|
||
on: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
--- | ||
repos: | ||
# Standard hooks | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: check-added-large-files | ||
# mesh files has to be taken into account | ||
args: [--maxkb=3000] | ||
- id: check-ast | ||
- id: check-case-conflict | ||
- id: check-merge-conflict | ||
- id: check-symlinks | ||
- id: check-xml | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: destroyed-symlinks | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
- id: fix-byte-order-marker | ||
- id: name-tests-test | ||
- id: mixed-line-ending | ||
- id: trailing-whitespace | ||
|
||
# Python hooks | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.15.2 | ||
hooks: | ||
- id: pyupgrade | ||
args: [--py36-plus] | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
args: [--line-length=99] | ||
|
||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 7.0.0 | ||
hooks: | ||
- id: flake8 | ||
args: ['--ignore=E501,W503'] # ignore too long line and line break before binary operator, | ||
# black checks it | ||
|
||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
args: [--profile, black] | ||
|
||
# CPP hooks | ||
- repo: https://github.com/pre-commit/mirrors-clang-format | ||
rev: v18.1.5 | ||
hooks: | ||
- id: clang-format | ||
|
||
- repo: local | ||
hooks: | ||
- id: ament_cppcheck | ||
name: ament_cppcheck | ||
description: Static code analysis of C/C++ files. | ||
entry: env AMENT_CPPCHECK_ALLOW_SLOW_VERSIONS=1 ament_cppcheck | ||
language: system | ||
files: \.(h\+\+|h|hh|hxx|hpp|cuh|c|cc|cpp|cu|c\+\+|cxx|tpp|txx)$ | ||
|
||
- repo: local | ||
hooks: | ||
- id: ament_cpplint | ||
name: ament_cpplint | ||
description: Static code analysis of C/C++ files. | ||
entry: ament_cpplint | ||
language: system | ||
files: \.(h\+\+|h|hh|hxx|hpp|cuh|c|cc|cpp|cu|c\+\+|cxx|tpp|txx)$ | ||
args: [--linelength=100, --filter=-whitespace/newline] | ||
|
||
# Cmake hooks | ||
- repo: local | ||
hooks: | ||
- id: ament_lint_cmake | ||
name: ament_lint_cmake | ||
description: Check format of CMakeLists.txt files. | ||
entry: ament_lint_cmake | ||
language: system | ||
files: CMakeLists\.txt$ | ||
|
||
- repo: https://github.com/cheshirekow/cmake-format-precommit | ||
rev: v0.6.13 | ||
hooks: | ||
- id: cmake-format | ||
|
||
# XML | ||
- repo: https://github.com/tier4/pre-commit-hooks-ros | ||
rev: v0.8.0 | ||
hooks: | ||
- id: prettier-package-xml | ||
- id: sort-package-xml | ||
|
||
# YAML | ||
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt | ||
rev: 0.2.3 | ||
hooks: | ||
- id: yamlfmt | ||
files: ^(?!.*compose)(?!.*ekf\.yaml$).*$ | ||
args: [--mapping, '2', --sequence, '4', --offset, '2', --width, '100'] | ||
|
||
# Copyright | ||
- repo: local | ||
hooks: | ||
- id: ament_copyright | ||
name: ament_copyright | ||
description: Check if copyright notice is available in all files. | ||
entry: ament_copyright | ||
language: system | ||
|
||
# Spellcheck | ||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.2.6 | ||
hooks: | ||
- id: codespell | ||
args: [--write-changes, --uri-ignore-words-list=ist, -L manuel] | ||
exclude: CHANGELOG\.rst|\.(svg|pyc|drawio)$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ROS COMPONENTS DESCRIPTION PACKAGE LICENSING | ||
The default license for ROS components description package is the Apache License, Version 2.0 | ||
(see LICENSE_APACHE2.txt); you may elect at your option to use the ROS COMPONENTS DESCRIPTION | ||
package under the MIT License (see LICENSE_MIT.txt). Contributions must be | ||
The default license for ROS components description package is the Apache License, Version 2.0 | ||
(see LICENSE_APACHE2.txt); you may elect at your option to use the ROS COMPONENTS DESCRIPTION | ||
package under the MIT License (see LICENSE_MIT.txt). Contributions must be | ||
made under both licenses. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
--- | ||
# https://github.com/orbbec/OrbbecSDK_ROS2#all-available-topics | ||
- topic_name: <robot_namespace><device_namespace>/color/camera_info | ||
ros_type_name: sensor_msgs/msg/CameraInfo | ||
gz_type_name: ignition.msgs.CameraInfo | ||
lazy: true | ||
- topic_name: <robot_namespace><device_namespace>/color/camera_info | ||
ros_type_name: sensor_msgs/msg/CameraInfo | ||
gz_type_name: ignition.msgs.CameraInfo | ||
lazy: true | ||
|
||
- topic_name: <robot_namespace><device_namespace>/color/image_raw | ||
ros_type_name: sensor_msgs/msg/Image | ||
gz_type_name: ignition.msgs.Image | ||
lazy: true | ||
- topic_name: <robot_namespace><device_namespace>/color/image_raw | ||
ros_type_name: sensor_msgs/msg/Image | ||
gz_type_name: ignition.msgs.Image | ||
lazy: true | ||
|
||
- topic_name: <robot_namespace><device_namespace>/depth/camera_info | ||
ros_type_name: sensor_msgs/msg/CameraInfo | ||
gz_type_name: ignition.msgs.CameraInfo | ||
lazy: true | ||
- topic_name: <robot_namespace><device_namespace>/depth/camera_info | ||
ros_type_name: sensor_msgs/msg/CameraInfo | ||
gz_type_name: ignition.msgs.CameraInfo | ||
lazy: true | ||
|
||
- topic_name: <robot_namespace><device_namespace>/depth/image_raw | ||
ros_type_name: sensor_msgs/msg/Image | ||
gz_type_name: ignition.msgs.Image | ||
lazy: true | ||
- topic_name: <robot_namespace><device_namespace>/depth/image_raw | ||
ros_type_name: sensor_msgs/msg/Image | ||
gz_type_name: ignition.msgs.Image | ||
lazy: true | ||
|
||
- ros_topic_name: <robot_namespace><device_namespace>/depth/points | ||
gz_topic_name: <robot_namespace><device_namespace>/depth/image_raw/points | ||
ros_type_name: sensor_msgs/msg/PointCloud2 | ||
gz_type_name: ignition.msgs.PointCloudPacked | ||
lazy: true | ||
- ros_topic_name: <robot_namespace><device_namespace>/depth/points | ||
gz_topic_name: <robot_namespace><device_namespace>/depth/image_raw/points | ||
ros_type_name: sensor_msgs/msg/PointCloud2 | ||
gz_type_name: ignition.msgs.PointCloudPacked | ||
lazy: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
- topic_name: <robot_namespace><device_namespace>/fix | ||
ros_type_name: sensor_msgs/msg/NavSatFix | ||
gz_type_name: ignition.msgs.NavSat | ||
direction: GZ_TO_ROS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
/**: | ||
joint_trajectory_controller: | ||
ros__parameters: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
/**: | ||
joint_trajectory_controller: | ||
ros__parameters: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ament_prepend_unique_value GAZEBO_MODEL_PATH "@CMAKE_INSTALL_PREFIX@/share" | ||
ament_prepend_unique_value GZ_SIM_RESOURCE_PATH "@CMAKE_INSTALL_PREFIX@/share" | ||
ament_prepend_unique_value IGN_GAZEBO_RESOURCE_PATH "@CMAKE_INSTALL_PREFIX@/share" | ||
ament_prepend_unique_value IGN_GAZEBO_RESOURCE_PATH "@CMAKE_INSTALL_PREFIX@/share" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.