-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial port of diagnostics to C++ * Remap axis camera topics to match API * Monitor MCU Status message frequency * Added firmware version check * Group MCU diagnostics together * Improve messaging around firmware versions * Disable MCU diagnostics for A200
- Loading branch information
1 parent
f7e4f86
commit cd66fd9
Showing
12 changed files
with
528 additions
and
360 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
Empty file.
249 changes: 0 additions & 249 deletions
249
clearpath_diagnostics/clearpath_diagnostics/diagnostics_updater
This file was deleted.
Oops, something went wrong.
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,35 @@ | ||
diagnostic_aggregator: | ||
ros__parameters: | ||
path: Clearpath Diagnostics | ||
platform: | ||
type: diagnostic_aggregator/AnalyzerGroup | ||
path: Platform | ||
analyzers: | ||
mcu: | ||
type: diagnostic_aggregator/GenericAnalyzer | ||
path: MCU | ||
contains: [ 'MCU' ] | ||
sensors: | ||
type: diagnostic_aggregator/AnalyzerGroup | ||
path: Sensors | ||
analyzers: | ||
cameras: | ||
type: diagnostic_aggregator/GenericAnalyzer | ||
path: Cameras | ||
contains: [ 'camera' ] | ||
lidar2d: | ||
type: diagnostic_aggregator/GenericAnalyzer | ||
path: Lidar2D | ||
contains: [ 'lidar2d' ] | ||
lidar3d: | ||
type: diagnostic_aggregator/GenericAnalyzer | ||
path: Lidar3D | ||
contains: [ 'lidar3d' ] | ||
imu: | ||
type: diagnostic_aggregator/GenericAnalyzer | ||
path: IMU | ||
contains: [ 'imu' ] | ||
gps: | ||
type: diagnostic_aggregator/GenericAnalyzer | ||
path: GPS | ||
contains: [ 'gps' ] |
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,8 @@ | ||
clearpath_diagnostic_updater: | ||
ros__parameters: | ||
serial_number: unknown | ||
platform_model: unknown | ||
ros_distro: unknown | ||
latest_apt_firmware_version: unknown | ||
installed_apt_firmware_version: unknown | ||
topics: {} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.