mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-14 20:10:18 +03:00
Adding example of MSP on two ports to docs.
This commit is contained in:
parent
f578cec4e0
commit
7c4830d411
1 changed files with 20 additions and 1 deletions
|
@ -186,4 +186,23 @@ feature RX_SERIAL
|
||||||
set serialrx_provider = 0
|
set serialrx_provider = 0
|
||||||
set serial_port_2_scenario = 3
|
set serial_port_2_scenario = 3
|
||||||
save
|
save
|
||||||
```
|
```
|
||||||
|
|
||||||
|
i) MSP via USART1 and SoftSerial 1
|
||||||
|
|
||||||
|
- TELEMETRY,MSP,CLI,GPS PASSTHROUGH on UART1
|
||||||
|
- MSP on SPFTSERIAL1
|
||||||
|
- Both ports will be at 19200 (limited by softserial)
|
||||||
|
- USART2 can still be used for GPS/SerialRX/Telemetry, etc.
|
||||||
|
|
||||||
|
```
|
||||||
|
feature -RX_PARALLEL_PWM
|
||||||
|
feature RC_PPM
|
||||||
|
feature SOFTSERIAL
|
||||||
|
set serial_port_1_scenario = 1
|
||||||
|
set serial_port_3_scenario = 8
|
||||||
|
set msp_baudrate = 19200
|
||||||
|
set cli_baudrate = 19200
|
||||||
|
set gps_passthrough_baudrate = 19200
|
||||||
|
save
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue