8000 periph/timer: fix Kconfig menu title by gschorcht · Pull Request #17830 · RIOT-OS/RIOT · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

periph/timer: fix Kconfig menu title #17830

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions drivers/periph_common/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,6 @@ config MODULE_PERIPH_INIT_HWRNG

rsource "Kconfig.i2c"

config MODULE_PERIPH_PWM
bool "PWM peripheral driver"
depends on HAS_PERIPH_PWM
select MODULE_PERIPH_COMMON

config MODULE_PERIPH_INIT_PWM
bool "Auto initialize PWM peripheral"
default y if MODULE_PERIPH_INIT
depends on MODULE_PERIPH_PWM

config MODULE_PERIPH_PM
bool "Power Management (PM) peripheral driver"
default y
Expand All @@ -105,6 +95,16 @@ config MODULE_PERIPH_INIT_PM
default y if MODULE_PERIPH_INIT
depends on MODULE_PERIPH_PM

config MODULE_PERIPH_PWM
bool "PWM peripheral driver"
depends on HAS_PERIPH_PWM
select MODULE_PERIPH_COMMON

< 8000 /td> config MODULE_PERIPH_INIT_PWM
bool "Auto initialize PWM peripheral"
default y if MODULE_PERIPH_INIT
depends on MODULE_PERIPH_PWM

config MODULE_PERIPH_QDEC
bool "Quadrature Decoder (QDEC) peripheral driver"
depends on HAS_PERIPH_QDEC
Expand Down Expand Up @@ -149,6 +149,7 @@ config MODULE_PERIPH_INIT_TEMPERATURE
default y if MODULE_PERIPH_INIT
depends on MODULE_PERIPH_TEMPERATURE

rsource "Kconfig.timer"
rsource "Kconfig.uart"

config MODULE_PERIPH_USBDEV
Expand All @@ -169,6 +170,5 @@ config HAVE_SHARED_PERIPH_RTT_PERIPH_RTC
The periph_rtc module or the periph_rtt module share hardware, thus,
only one can be selected.

rsource "Kconfig.timer"
rsource "Kconfig.vbat"
rsource "Kconfig.wdt"
2 changes: 1 addition & 1 deletion drivers/periph_common/Kconfig.timer
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
if TEST_KCONFIG

menuconfig MODULE_PERIPH_TIMER
bool "Configure timer peripheral driver"
bool "Timer peripheral driver"
depends on HAS_PERIPH_TIMER
select MODULE_PERIPH_COMMON

Expand Down
0