-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- `record_rosbag.sh` - `max-cache-size` is significantly increased to avoid loosing data while writing - rosbags are splitted every 10 GiB - use `mcap_cfg.yaml` for configuring storage - Data is not compressed to avoid overheads when writing (`compression: "None"`) - More topics are added for recording, this includes dataspeed DBW report topics - `dev.sh` allows `-p` arg to specity a docker volume where rosbags are going to be saved locally - The script will try to use an in-vehicle only directory and will exit if not found - Set Cyclone DDS as ROS RMW and configure it for high msg throughput - Foxglove bridge now runs with `num_threads:=0`
- Loading branch information
Showing
8 changed files
with
141 additions
and
55 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
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,11 @@ | ||
noChunkCRC: false | ||
noAttachmentCRC: false | ||
enableDataCRC: false | ||
noSummaryCRC: false | ||
noChunking: false | ||
noMessageIndex: false | ||
noSummary: false | ||
chunkSize: 786432 | ||
compression: "None" | ||
compressionLevel: "Default" | ||
forceCompression: false |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<CycloneDDS xmlns="https://cdds.io/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://cdds.io/config | ||
https://raw.githubusercontent.com/eclipse-cyclonedds/cyclonedds/master/etc/cyclonedds.xsd"> | ||
<Domain id="any"> | ||
<Internal> | ||
<SocketReceiveBufferSize min="10MB"/> | ||
</Internal> | ||
</Domain> | ||
</CycloneDDS> |
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,4 +1,4 @@ | ||
#!/bin/bash | ||
|
||
ros2 launch foxglove_bridge foxglove_bridge_launch.xml \ | ||
address:=172.31.0.1 send_buffer_limit:=1000000000 num_threads:=4 | ||
address:=172.31.0.1 send_buffer_limit:=1000000000 num_threads:=0 |
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