-
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
Showing
3 changed files
with
50 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
motor_params: | ||
n_motors: 4 | ||
a: 0.77522 | ||
b: -1.2348 | ||
|
||
mrs_uav_managers: | ||
|
||
constraint_manager: | ||
|
||
# list of allowed constraints per odometry mode | ||
allowed_constraints: | ||
gps_garmin: ["slow", "medium"] | ||
gps_baro: ["slow", "medium"] | ||
rtk: ["slow", "medium"] | ||
rtk_garmin: ["slow", "medium"] | ||
aloam: ["slow"] | ||
hector_garmin: ["slow"] | ||
vio: ["slow"] | ||
optflow: ["slow"] | ||
other: ["slow"] | ||
ground_truth: ["slow", "medium"] | ||
passthrough: ["slow", "medium"] | ||
|
||
mrs_uav_managers: | ||
estimation_manager: | ||
gps_garmin: # namespace of the state estimator | ||
alt_garmin: # namespace of the altitude estimator | ||
pos_garmin: | ||
noise: 10.0 # measurement noise covariance (R) |
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,21 @@ | ||
# Motor thrust curve parameters | ||
# a - quadratic term | ||
# b - constant term | ||
# n_motors - number of motors on the UAV | ||
|
||
motor_params: | ||
a: 0.348 | ||
b: -0.215 | ||
n_motors: 4 | ||
|
||
mrs_uav_managers: | ||
|
||
estimation_manager: | ||
|
||
state_estimators: [ | ||
"gps_baro", | ||
] | ||
|
||
initial_state_estimator: "gps_baro" | ||
|
||
agl_height_estimator: "" |