Skip to content

Commit

Permalink
fix include for target config.c
Browse files Browse the repository at this point in the history
  • Loading branch information
shota3527 committed Jul 25, 2023
1 parent 4d81361 commit 3cf482c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions docs/Settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -2542,6 +2542,16 @@ This is the PWM value sent to ESCs when they are not armed. If ESCs beep slowly

---

### mixer_pid_profile_linking

If enabled, pid profile index will follow mixer profile index

| Default | Min | Max |
| --- | --- | --- |
| OFF | OFF | ON |

---

### mode_range_logic_operator

Control how Mode selection works in flight modes. If you example have Angle mode configured on two different Aux channels, this controls if you need both activated ( AND ) or if you only need one activated ( OR ) to active angle mode.
Expand Down Expand Up @@ -2602,6 +2612,16 @@ Output frequency (in Hz) for motor pins. Applies only to brushed motors.

---

### motorstop_on_low

If enabled, motor will stop when throttle is low

| Default | Min | Max |
| --- | --- | --- |
| OFF | OFF | ON |

---

### msp_override_channels

Mask of RX channels that may be overridden by MSP `SET_RAW_RC`. Note that this requires custom firmware with `USE_RX_MSP` and `USE_MSP_RC_OVERRIDE` compile options and the `MSP RC Override` flight mode.
Expand Down
2 changes: 1 addition & 1 deletion src/main/target/FF_F35_LIGHTNING/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include <platform.h>
#include "config/config_master.h"
#include "flight/mixer.h"
#include "flight/mixer_profile.h"
#include "rx/rx.h"
#include "io/serial.h"
#include "telemetry/telemetry.h"
Expand Down
2 changes: 1 addition & 1 deletion src/main/target/MATEKF405SE/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "config/config_master.h"
#include "config/feature.h"

#include "flight/mixer.h"
#include "flight/mixer_profile.h"

#include "io/serial.h"

Expand Down

0 comments on commit 3cf482c

Please sign in to comment.