mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-27 07:20:35 +08:00
caf031f94b
Convert 1 parameter file(s) from legacy C format to YAML module configuration.
19 lines
581 B
YAML
19 lines
581 B
YAML
module_name: dataman
|
|
parameters:
|
|
- group: System
|
|
definitions:
|
|
SYS_DM_BACKEND:
|
|
description:
|
|
short: Dataman storage backend
|
|
long: |-
|
|
If the board supports persistent storage (i.e., the KConfig variable DATAMAN_PERSISTENT_STORAGE is set),
|
|
the 'Default storage' backend uses a file on persistent storage. If not supported, this backend uses
|
|
non-persistent storage in RAM.
|
|
type: enum
|
|
values:
|
|
-1: Dataman disabled
|
|
0: Default storage
|
|
1: RAM storage
|
|
default: 0
|
|
reboot_required: true
|