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

20 lines
606 B
Plaintext
Raw Normal View History

# Copyright (c) 2019 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
choice LOG
#the choice prompt is described in sys/Kconfig
config MODULE_LOG_COLOR
bool "log_color: colored log output"
select MODULE_LOG
# log_color fails to compile with -Wformat-nonliteral but this is required
# for the wrapped stdio that pushes the format string into progmem
depends on !CPU_ARCH_AVR8
help
Implements a logging module with colored output.
endchoice