mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 22:13:52 +01:00
Release the UART before acquiring it again to not dead-lock the code if acquire/release semantics is implemented by the UART peripheral.
17 lines
438 B
Makefile
17 lines
438 B
Makefile
include ../Makefile.periph_common
|
|
|
|
FEATURES_REQUIRED += periph_uart
|
|
FEATURES_OPTIONAL += periph_lpuart # STM32 L0 and L4 provides lpuart support
|
|
FEATURES_OPTIONAL += periph_uart_collision
|
|
FEATURES_OPTIONAL += periph_uart_modecfg
|
|
FEATURES_OPTIONAL += periph_uart_rxstart_irq
|
|
|
|
USEMODULE += bitfield
|
|
USEMODULE += shell
|
|
USEMODULE += ztimer_msec
|
|
|
|
# avoid running Kconfig by default
|
|
SHOULD_RUN_KCONFIG ?=
|
|
|
|
include $(RIOTBASE)/Makefile.include
|