-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84911d7
commit 19901f1
Showing
2 changed files
with
47 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Frame definitions | ||
map_frame: map # Fixed global frame, global navigation | ||
odom_frame: odom # Local reference that tracks robot position over time based on wheel encoders | ||
base_link_frame: base_link # Robot's body frame, centered on the robot and moves with it | ||
|
||
#GPS | ||
GPS: | ||
port: /dev/ttyUSB0 | ||
baud: 19200 | ||
|
||
ODOM: | ||
odom0: /odometry_topic # Provides information about robot's position and velocity | ||
odom0_config: [true, true, false, | ||
false, false, true, | ||
true, false, false, | ||
false, false, true, | ||
false, false, false] # 2D configuration for X, Y position, velocity, and YAW | ||
|
||
IMU: | ||
imu0: /imu_topic # Inertial measurement unit, provides info on orientation, accelerations, angular velocity | ||
imu0_config: [false, false, false, | ||
false, false, true, | ||
false, false, false, | ||
false, false, true, | ||
true, false, false] # Yaw is important for steering and orientation | ||
|
||
# Parameters | ||
frequency: 50 | ||
sensor_timeout: 0.1 | ||
two_d_mode: 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