-
Notifications
You must be signed in to change notification settings - Fork 13.7k
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
Pr crazyflie optflow fix #9514
Merged
Merged
Pr crazyflie optflow fix #9514
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -14,39 +14,52 @@ | |
# | ||
# @maintainer Dennis Shtatov <[email protected]> | ||
# | ||
|
||
sh /etc/init.d/4001_quad_x | ||
|
||
|
||
if [ $AUTOCNF == yes ] | ||
then | ||
param set COM_RC_IN_MODE 2 | ||
param set BAT_N_CELLS 1 | ||
param set BAT_CAPACITY 240 | ||
param set BAT_SOURCE 1 | ||
|
||
param set PWM_DISARMED 0 | ||
param set PWM_MIN 0 | ||
param set PWM_MAX 255 | ||
|
||
param set SYS_COMPANION 20 | ||
|
||
param set MC_PITCHRATE_D 0.0015 | ||
param set MC_PITCHRATE_I 0.05 | ||
param set MC_PITCHRATE_P 0.045 | ||
param set MC_PITCH_P 6.5 | ||
param set MC_ROLLRATE_D 0.0015 | ||
param set MC_ROLLRATE_I 0.05 | ||
param set MC_ROLLRATE_P 0.045 | ||
param set MC_ROLL_P 6.5 | ||
param set MC_YAW_P 3.0 | ||
|
||
param set CBRK_SUPPLY_CHK 894281 | ||
param set CBRK_USB_CHK 197848 | ||
param set COM_RC_IN_MODE 1 | ||
param set BAT_N_CELLS 1 | ||
param set BAT_CAPACITY 240 | ||
param set BAT_SOURCE 1 | ||
param set PWM_DISARMED 0 | ||
param set PWM_MIN 0 | ||
param set PWM_MAX 255 | ||
param set SYS_COMPANION 20 | ||
param set MC_PITCHRATE_D 0.002 | ||
param set MC_PITCHRATE_I 0.2 | ||
param set MC_PITCHRATE_P 0.07 | ||
param set MC_PITCH_P 6.5 | ||
param set MC_ROLLRATE_D 0.002 | ||
param set MC_ROLLRATE_I 0.2 | ||
param set MC_ROLLRATE_P 0.07 | ||
param set MC_ROLL_P 6.5 | ||
param set MC_YAW_P 3.0 | ||
param set EKF2_HGT_MODE 2 | ||
param set EKF2_AID_MASK 3 | ||
param set EKF2_OF_DELAY 10 | ||
param set MPC_THR_HOVER 0.7 | ||
param set MPC_MANTHR_MAX 1.0 | ||
param set MPC_THR_MAX 1.0 | ||
param set MPC_Z_P 1.5 | ||
param set MPC_Z_VEL_I 0.3 | ||
param set MPC_Z_VEL_P 0.4 | ||
param set MPC_HOLD_MAX_XY 0.1 | ||
param set MPC_MAX_FLOW_HGT 3 | ||
param set IMU_GYRO_CUTOFF 100 | ||
param set IMU_ACCEL_CUTOFF 30 | ||
param set MC_DTERM_CUTOFF 70 | ||
param set SYS_FMU_TASK 1 | ||
param set CBRK_SUPPLY_CHK 894281 | ||
param set CBRK_USB_CHK 197848 | ||
param set SDLOG_PROFILE 1 | ||
param set EKF2_MAG_TYPE 1 | ||
param set EKF2_ABL_LIM 2.0 | ||
param set MC_AIRMODE 1 | ||
param set NAV_RCL_ACT 3 | ||
param set SENS_FLOW_MINRNG 0.05 | ||
fi | ||
|
||
set PWM_MIN none | ||
set PWM_MAX none | ||
set PWM_DISARMED none | ||
# Will run the motors at 328.125 kHz (recommended) | ||
set PWM_RATE 3921 | ||
set PWM_RATE 3921 |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor suggestion, sorting these alphabetically and splitting roughly by group makes this a bit easier to read or change.