Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: x2 gen2/asterx sb3 #286

Merged
merged 3 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/**:
ros__parameters:
device: tcp://192.168.20.102:28784

frame_id: gnss_link
aux1_frame_id: aux1
get_spatial_config_from_tf: false
use_ros_axis_orientation: false
receiver_type: gnss
multi_antenna: true

datum: Default

att_offset:
heading: 0.0
pitch: 0.0

ant_type: "AERAT1675_382 NONE"

Check warning on line 18 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (AERAT)
ant_serial_nr: Unknown
ant_aux1_type: "AERAT1675_382 NONE"

Check warning on line 20 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (AERAT)
ant_aux1_serial_nr: Unknown

polling_period:
pvt: 200
rest: 200

use_gnss_time: false

rtk_settings:
ntrip_1:

Check warning on line 30 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (ntrip)
id: ""
caster: ""
caster_port: 2101
username: ""
password: ""
mountpoint: ""
version: "v2"
tls: false
fingerprint: ""
rtk_standard: "auto"
send_gga: "auto"
keep_open: true
ip_server_1:
id: "IPS1"
port: 28785
rtk_standard: "RTCMv3"
send_gga: "auto"
keep_open: true
serial_1:
port: ""
baud_rate: 115200
rtk_standard: "auto"
send_gga: "auto"
keep_open: true

publish:
# For both GNSS and INS Rxs
navsatfix: true
gpsfix: false

Check warning on line 59 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (gpsfix)
gpgga: false

Check warning on line 60 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (gpgga)
gprmc: false

Check warning on line 61 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (gprmc)
gpst: false

Check warning on line 62 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (gpst)
measepoch: false

Check warning on line 63 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (measepoch)
pvtcartesian: false

Check warning on line 64 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (pvtcartesian)
pvtgeodetic: true
basevectorcart: false

Check warning on line 66 in aip_x2_gen2_launch/config/asterx_sb3_rover.param.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (basevectorcart)
basevectorgeod: false
poscovcartesian: false
poscovgeodetic: true
velcovgeodetic: false
atteuler: false
attcoveuler: false
pose: false
twist: false
diagnostics: true
# For GNSS Rx only
gpgsa: false
gpgsv: false

# logger

activate_debug_log: false
2 changes: 1 addition & 1 deletion aip_x2_gen2_launch/launch/gnss.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<!-- Septentrio Mosaic Driver -->
<node pkg="septentrio_gnss_driver" name="septentrio" exec="septentrio_gnss_driver_node" if="$(var launch_driver)">
<param from="$(find-pkg-share aip_x2_gen2_launch)/config/mosaic_x5_rover.param.yaml"/>
<param from="$(find-pkg-share aip_x2_gen2_launch)/config/asterx_sb3_rover.param.yaml"/>
<remap from="navsatfix" to="~/nav_sat_fix"/>
<remap from="poscovgeodetic" to="~/poscovgeodetic"/>
<remap from="pvtgeodetic" to="~/pvtgeodetic"/>
Expand Down
4 changes: 2 additions & 2 deletions aip_x2_gen2_launch/launch/sensing.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
</include>

<!-- GNSS Driver -->
<!-- <include file="$(find-pkg-share aip_x2_gen2_launch)/launch/gnss.launch.xml">
<include file="$(find-pkg-share aip_x2_gen2_launch)/launch/gnss.launch.xml">
<arg name="launch_driver" value="$(var launch_driver)" />
</include> -->
</include>

<!-- Radar Driver -->
<include file="$(find-pkg-share aip_x2_gen2_launch)/launch/radar.launch.xml">
Expand Down
Loading