Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
503 B

# 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"