# Copyright (c) 2021 Percepio AB
# SPDX-License-Identifier: Apache-2.0

if TRACING && PERCEPIO_TRACERECORDER

menu "RTOS Specific"
    visible if n
config PERCEPIO_TRC_CFG_RECORDER_RTOS_ZEPHYR
    bool "Zephyr"
    default y

# Zephyr does not support the classic snapshot format, only streaming
# and streaming snapshot (RingBuffer).
config PERCEPIO_TRC_RECORDER_MODE_STREAMING
    bool "Streaming recorder mode"
    default y
    
config PERCEPIO_TRC_RECORDER_MODE_SNAPSHOT
    bool "Snapshot recorder mode"
    default n
endmenu # "RTOS Specific"

# Source recorder common config
rsource "../../config/Kconfig"

endif # TRACING && PERCEPIO_TRACERECORDER
