Skip to content

conflicts

Required: No
Type: List of features
Condition: Partial (no unless)

Components can list features they are incompatible with to the rest of the project using this property.

A component that conflicts with a feature cannot be present in the project together with a component that provides the same feature.

A feature is the exact, case-sensitive string given by the name key.

Key Required Type Description
name Yes String Name of the feature
condition No List of features The feature is provided only if all the given features are present

See the detailed description of features for more information.

1
2
conflicts:
  - name: uart_driver
Back to top