1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

board/common/nucleo: Use and doc HAVE_* Kconfig

This commit is contained in:
MrKevinWeiss 2021-09-17 10:11:44 +02:00
parent 8140037e04
commit c9ffb8d2af
No known key found for this signature in database
GPG Key ID: 3514539D7808D123
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ if TEST_KCONFIG
config MODULE_BOARDS_COMMON_NUCLEO
bool
default y
select MODULE_SAUL_GPIO if MODULE_SAUL_DEFAULT && HAS_PERIPH_GPIO
select HAVE_SAUL_GPIO
help
stm32 common nucleo code.

View File

@ -475,6 +475,7 @@ reserved for the cases described below:
| `HAS_` | Models a [feature](build-system-basics.html#features) |
| `KCONFIG_USEMODULE_` | Used during transition to enable configuration of a module via Kconfig |
| `KCONFIG_USEPKG_` | Used during transition to enable configuration of a package via Kconfig |
| `HAVE_` | Models a feature not present in makefiles, will be unified in the future |
| `USEMODULE_` | Models a [RIOT module](creating-modules.html#creating-modules). Generated from `USEMODULE` variable |
| `USEPKG_` | Models an [external package](group__pkg.html). Generated from `USEPKG` variable |