Ports Tab
You will have multiple different devices and peripherals connected to your flight controller UART ports, like a GPS, VTX control, or even a wireless adapter. This is where you tell the flight controller how to read, and what to do with the data it receives from these ports
Identifier
The label of the port. Usually UART[x]
, SOFTSERIAL
, or USB
. The UART number responds to the RX-TX
pairs on the FC
Configuration/MSP
As the name suggests, usually only used for lower-level communication using the MSP (MultiWii Serial Protocol) for configuration done by external devices, or to allow a more direct way of control. You can also set a specific baud rate
This is not to be used as a "toggle" for the current UART when setting it (for example) for Serial RX. It's a relatively common mistake to make, and then cause your config to not save to prevent unwanted behavior when conflicting options are set
Serial RX
Used to set the UART to receive serial data from a receiver. This is the most common use of a UART port. If you toggle this on, you likely do not need to touch any ohter options for this port