Skip to content

Commit adfc196

Browse files
urfeexurmahp
andauthored
Polyscopex dashboard client (#392)
This adds the new Dashbaord Server called Robot API on PolyScope X 10.11.0 to the client library. It is implemented as a drop-in replacement for the CB3 adn PolyScope 5 dashboard clients. Note that this doesn't cover all features of the "old" Dashboard Server. --------- Co-authored-by: Mads Holm Peters <[email protected]>
1 parent 8bb50f5 commit adfc196

30 files changed

+41757
-523
lines changed

.github/codecov.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ codecov:
44
strict_yaml_branch: default # only use the latest YAML on stated branch
55

66
ignore:
7+
- "3rdparty/*" # ignore examples
78
- "examples/*" # ignore examples
8-
- "tests/*" # ignore unit tests
9+
- "tests/*" # ignore unit tests

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: install gcovr
6868
run: sudo apt-get install -y gcovr
6969
- name: gcovr
70-
run: cd build && gcovr -r .. --gcov-ignore-parse-errors negative_hits.warn_once_per_file
70+
run: cd build && gcovr -r .. --gcov-ignore-parse-errors negative_hits.warn_once_per_file --exclude "../3rdparty"
7171
- name: Upload coverage to Codecov
7272
uses: codecov/codecov-action@v5
7373
with:

.github/workflows/industrial-ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,19 @@ jobs:
1616
ROS_DISTRO:
1717
- NAME: noetic
1818
DOWNSTREAM_WORKSPACE: "github:UniversalRobots/Universal_Robots_ROS_Driver#master"
19+
CLANG_TIDY: ""
1920
- NAME: humble
2021
DOWNSTREAM_WORKSPACE: "github:UniversalRobots/Universal_Robots_ROS2_Driver#humble"
22+
CLANG_TIDY: ""
2123
- NAME: jazzy
2224
DOWNSTREAM_WORKSPACE: "github:UniversalRobots/Universal_Robots_ROS2_Driver#jazzy"
25+
CLANG_TIDY: ""
2326
- NAME: kilted
2427
DOWNSTREAM_WORKSPACE: "github:UniversalRobots/Universal_Robots_ROS2_Driver#main"
28+
CLANG_TIDY: ""
2529
- NAME: rolling
2630
DOWNSTREAM_WORKSPACE: "github:UniversalRobots/Universal_Robots_ROS2_Driver#main"
31+
CLANG_TIDY: pedantic
2732
ROS_REPO:
2833
- main
2934
- testing
@@ -41,5 +46,4 @@ jobs:
4146
DOWNSTREAM_WORKSPACE: ${{matrix.ROS_DISTRO.DOWNSTREAM_WORKSPACE}}
4247
ROS_DISTRO: ${{matrix.ROS_DISTRO.NAME}}
4348
ROS_REPO: ${{matrix.ROS_REPO}}
44-
CLANG_TIDY: pedantic
45-
CLANG_TIDY_ARGS: '--extra-arg=-std=c++17' # needed for Humble
49+
CLANG_TIDY: ${{matrix.ROS_DISTRO.CLANG_TIDY}}

.pre-commit-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ repos:
33
rev: 'v19.1.5'
44
hooks:
55
- id: clang-format
6+
exclude: ^3rdparty/
7+
68
- repo: https://github.com/DavidAnson/markdownlint-cli2
79
rev: v0.13.0
810
hooks:

3rdparty/.clang-tidy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
# Disable all checks in this folder.
3+
Checks: '-*'
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 yhirose
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

0 commit comments

Comments
 (0)