1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

Updating Serial.md based on feedback from hwurzburg

See
http://www.multiwii.com/forum/posting.php?mode=quote&f=23&p=58745#pr58745
This commit is contained in:
Dominic Clifton 2014-11-13 20:32:10 +00:00
parent daef382dd9
commit 72cacdae74

View file

@ -47,13 +47,14 @@ To make configuration easier common usage scenarios are listed below.
9 SMARTPORT TELEMETRY ONLY 9 SMARTPORT TELEMETRY ONLY
``` ```
### Contraints ### Constraints
* There must always be a port available to use for MSP * There must always be a port available to use for MSP
* There must always be a port available to use for CLI * There must always be a port available to use for CLI
* To use a port for a function, the function's corresponding feature must be enabled first. * To use a port for a function, the function's corresponding feature must be enabled first.
e.g. to use GPS enable the GPS feature. e.g. to use GPS enable the GPS feature.
* If the configuration is invalid the serial port configuration will reset to it's defaults and features may be disabled. * If the configuration is invalid the serial port configuration will reset to it's defaults and features may be disabled.
* If softserial is used be aware that both softserial ports must use the same baudrate.
### Examples ### Examples