1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #14042 from aabadie/pr/doc/build-system-typo-fix

doc/build-system-basics: fix typo
This commit is contained in:
benpicco 2020-05-08 11:55:25 +02:00 committed by GitHub
commit f6b5652799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,11 +61,11 @@ For a `FEATURE` to be provided by a `board` it must meet 2 criteria, and for
`FEATURES_REQUIRED_ANY += arch_avr8|arch_native` if both are provide then
`arch_avr8` will be used.
- `FEATURES_BLACKLIST` are `FEATURES` that can't be used by a `MODULE` or `APPLCIATION`.
- `FEATURES_BLACKLIST` are `FEATURES` that can't be used by a `MODULE` or `APPLICATION`.
They are usually used for _hw_ characteristics like `arch_` to easily resolve
unsupported configurations for a group.
- `FEATURES_USED` are the final list of `FEATURES` that will be used by an `APPLCIATION`
- `FEATURES_USED` are the final list of `FEATURES` that will be used by an `APPLICATION`
### Where to define FEATURES_%