1# Copyright (c) 2020 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4choice APP_FORMATTER 5 prompt "Select print formatter" 6 default APP_FORMATTER_PRINTK 7 8config APP_FORMATTER_PRINTK 9 bool "Emit with printk" 10 11config APP_FORMATTER_PRINTF 12 bool "Emit with printf" 13 14config APP_FORMATTER_PRINTFCB 15 bool "Emit with printfcb" 16 17config APP_FORMATTER_FPRINTF 18 bool "Emit with fprintf" 19 20config APP_FORMATTER_FPRINTFCB 21 bool "Emit with fprintfcb" 22 23endchoice # APP_FORMATTER 24 25source "Kconfig.zephyr" 26