1# SPDX-FileCopyrightText: Copyright (c) 2025 Jilay Sandeep Pandya 2# SPDX-License-Identifier: Apache-2.0 3 4mainmenu "Stepper generic sample application" 5 6config STEPS_PER_REV 7 int "Steps per revolution" 8 default 200 9 10config STEP_INTERVAL_NS 11 int "Step interval (ns)" 12 default 1000000 13 14config PING_PONG_N_REV 15 int "Change direction every N revolutions" 16 default 1 17 18config MONITOR_THREAD_TIMEOUT_MS 19 int "Monitor thread timeout (ms)" 20 default 1000 21 22config MONITOR_THREAD_STACK_SIZE 23 int "Monitor thread stack size" 24 default 1024 25 26source "Kconfig.zephyr" 27