zephyr/tests/lib/cbprintf_fp/Kconfig
Peter Bigot 9d6dcde81c tests: lib: add test for formatted output variants
Confirm that several ways of producing formatted output on the console
all work, and support evaluating the relative space requirements for
each.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
2021-01-27 13:34:06 -05:00

26 lines
503 B
Plaintext

# Copyright (c) 2020 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
choice APP_FORMATTER
prompt "Select print formatter"
default APP_FORMATTER_PRINTK
config APP_FORMATTER_PRINTK
bool "Emit with printk"
config APP_FORMATTER_PRINTF
bool "Emit with printf"
config APP_FORMATTER_PRINTFCB
bool "Emit with printfcb"
config APP_FORMATTER_FPRINTF
bool "Emit with fprintf"
config APP_FORMATTER_FPRINTFCB
bool "Emit with fprintfcb"
endchoice # APP_FORMATTER
source "Kconfig.zephyr"