
Reading Parameters
When you open the Parameters panel and click “Read from FC,” Mission Control requests the full parameter list from the flight controller. The loading progress bar shows how many parameters have been received out of the total. For ArduPilot, this typically takes 5-15 seconds depending on the connection speed and number of parameters (usually 800-1500).Browsing Parameters
Parameters are displayed in a table with configurable columns:
You can show or hide columns from the column visibility settings.
Searching
The search box at the top filters parameters by name or description. TypingBATT shows all battery-related parameters. Typing failsafe shows parameters related to failsafe behavior.
Search is case-insensitive and matches partial strings.
Filtering
Beyond search, several filter modes help you focus:Filter Presets
Save frequently used filter combinations as presets. A preset stores:- Search text
- Category selection
- Modified/non-default/favorites toggles
Editing Parameters
Click on a parameter’s value to edit it:- A text input or dropdown appears (dropdowns for enum-type parameters).
- Enter the new value.
- The parameter is highlighted as “dirty” (unsaved).
- Click “Save” to write the value to the FC.
Value Validation
The panel validates values before writing:- Values outside the min/max range are rejected with an error message
- Enum parameters only accept valid options
- Type mismatches are caught (e.g., entering text in a numeric field)
Import and Export
Exporting Parameters
Click “Export” to download a.param file containing all current parameters. The file format is plain text:
Importing Parameters
Click “Import” to load a.param file. Mission Control:
- Reads the file and parses name-value pairs
- Compares imported values against current FC values
- Shows a diff table highlighting what will change
- Lets you select which parameters to apply
- Writes the selected parameters to the FC
Backup and Restore
The firmware panel includes backup and restore features that work with parameter files:- Backup: Save the current parameter state
- Restore: Load a backup and write all differing parameters to the FC
Parameter Descriptions
Mission Control includes built-in parameter metadata for ArduPilot and PX4. When you hover over or select a parameter, you see:- Full description of what the parameter controls
- Valid range (min and max)
- Default value for the firmware version
- Units if applicable
- Options for enum-type parameters (e.g.,
BATT_MONITOR: 0=Disabled, 3=Analog Voltage Only, 4=Analog Voltage and Current)
Keyboard Shortcuts
Working with Many Parameters
For drones with 1000+ parameters:- Use search to narrow down. Most tasks only need 5-10 parameters.
- Use category filters to browse by subsystem.
- The “Modified only” filter shows what you have changed in this session.
- “Non-default” highlights everything that differs from the firmware defaults, which is useful for auditing a configuration.