Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
928fdf34
Commit
928fdf34
authored
7 years ago
by
Daniel Agar
Committed by
Lorenz Meier
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
sensors move THR_MDL_FAC and MOT_SLEW_MAX to px4fmu
parent
95631439
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/drivers/px4fmu/px4fmu_params.c
+26
-0
26 additions, 0 deletions
src/drivers/px4fmu/px4fmu_params.c
src/modules/sensors/pwm_params.c
+0
-27
0 additions, 27 deletions
src/modules/sensors/pwm_params.c
src/modules/sensors/sensor_params.c
+0
-27
0 additions, 27 deletions
src/modules/sensors/sensor_params.c
with
26 additions
and
54 deletions
src/drivers/px4fmu/px4fmu_params.c
+
26
−
0
View file @
928fdf34
...
...
@@ -169,3 +169,29 @@ PARAM_DEFINE_FLOAT(PWM_AUX_TRIM5, 0);
*/
PARAM_DEFINE_FLOAT
(
PWM_AUX_TRIM6
,
0
);
/**
* Thrust to PWM model parameter
*
* Parameter used to model the relationship between static thrust and motor
* input PWM. Model is: thrust = (1-factor)*PWM + factor * PWM^2
*
* @min 0.0
* @max 1.0
* @group PWM Outputs
*/
PARAM_DEFINE_FLOAT
(
THR_MDL_FAC
,
0
.
0
f
);
/**
* Minimum motor rise time (slew rate limit).
*
* Minimum time allowed for the motor input signal to pass through
* a range of 1000 PWM units. A value x means that the motor signal
* can only go from 1000 to 2000 PWM in maximum x seconds.
*
* Zero means that slew rate limiting is disabled.
*
* @min 0.0
* @unit s/(1000*PWM)
* @group PWM Outputs
*/
PARAM_DEFINE_FLOAT
(
MOT_SLEW_MAX
,
0
.
0
f
);
This diff is collapsed.
Click to expand it.
src/modules/sensors/pwm_params.c
+
0
−
27
View file @
928fdf34
...
...
@@ -349,30 +349,3 @@ PARAM_DEFINE_INT32(PWM_AUX_MAX, 2000);
* @group PWM Outputs
*/
PARAM_DEFINE_INT32
(
PWM_AUX_DISARMED
,
1500
);
/**
* Thrust to PWM model parameter
*
* Parameter used to model the relationship between static thrust and motor
* input PWM. Model is: thrust = (1-factor)*PWM + factor * PWM^2
*
* @min 0.0
* @max 1.0
* @group PWM Outputs
*/
PARAM_DEFINE_FLOAT
(
THR_MDL_FAC
,
0
.
0
f
);
/**
* Minimum motor rise time (slew rate limit).
*
* Minimum time allowed for the motor input signal to pass through
* a range of 1000 PWM units. A value x means that the motor signal
* can only go from 1000 to 2000 PWM in maximum x seconds.
*
* Zero means that slew rate limiting is disabled.
*
* @min 0.0
* @unit s/(1000*PWM)
* @group PWM Outputs
*/
PARAM_DEFINE_FLOAT
(
MOT_SLEW_MAX
,
0
.
0
f
);
This diff is collapsed.
Click to expand it.
src/modules/sensors/sensor_params.c
+
0
−
27
View file @
928fdf34
...
...
@@ -1120,30 +1120,3 @@ PARAM_DEFINE_INT32(SENS_EN_SF1XX, 0);
* @group Sensor Enable
*/
PARAM_DEFINE_INT32
(
SENS_EN_THERMAL
,
-
1
);
/**
* Thrust to PWM model parameter
*
* Parameter used to model the relationship between static thrust and motor
* input PWM. Model is: thrust = (1-factor)*PWM + factor * PWM^2
*
* @min 0.0
* @max 1.0
* @group PWM Outputs
*/
PARAM_DEFINE_FLOAT
(
THR_MDL_FAC
,
0
.
0
f
);
/**
* Minimum motor rise time (slew rate limit).
*
* Minimum time allowed for the motor input signal to pass through
* a range of 1000 PWM units. A value x means that the motor signal
* can only go from 1000 to 2000 PWM in maximum x seconds.
*
* Zero means that slew rate limiting is disabled.
*
* @min 0.0
* @unit s/(1000*PWM)
* @group PWM Outputs
*/
PARAM_DEFINE_FLOAT
(
MOT_SLEW_MAX
,
0
.
0
f
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment