mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
59 lines
1.8 KiB
Plaintext
59 lines
1.8 KiB
Plaintext
|
|
# Kconfig file for package rtt_auto_exe_cmd
|
|
menuconfig LPKG_USING_RTT_AUTO_EXE_CMD
|
|
bool "RTT_AUTO_CMD: Auto exe the cmd of rtthread"
|
|
default n
|
|
|
|
if LPKG_USING_RTT_AUTO_EXE_CMD
|
|
|
|
config RTT_AUTO_CMD_THREAD_STACK_SIZE
|
|
int "The RTT_AUTO_EXE thread stack size"
|
|
default 20480
|
|
|
|
config RTT_AUTO_CMD_THREAD_PRIORITY
|
|
int "The RTT_AUTO_EXE thread priority"
|
|
default 10
|
|
|
|
config RTT_AUTO_INIT_TIME_MS
|
|
int "[INIT]The RTT_AUTO_EXE thread wait init complete time"
|
|
default 5000
|
|
|
|
config RTT_CMD_1_STR
|
|
string "[INIT_CMD1]The RTT_AUTO_EXE thread init cmd 1"
|
|
default "version"
|
|
config RTT_CMD_1_DELAY
|
|
int "MS:The RTT_AUTO_EXE thread init cmd 1 delay time"
|
|
default 1000
|
|
config RTT_CMD_2_STR
|
|
string "[INIT_CMD2] The RTT_AUTO_EXE thread init cmd 2"
|
|
default "ps"
|
|
config RTT_CMD_2_DELAY
|
|
int "MS: The RTT_AUTO_EXE thread init cmd 2 delay time"
|
|
default 1000
|
|
|
|
config RTT_CMD_LOOP_FLAG
|
|
bool "The flag of RTT_AUTO_EXE loop cmd"
|
|
default n
|
|
|
|
if RTT_CMD_LOOP_FLAG
|
|
config RTT_CMD_LOOP_1_STR
|
|
string "[LOOP_CMD1]The RTT_AUTO_EXE thread loop cmd 1"
|
|
default "ps"
|
|
config RTT_CMD_LOOP_1_DELAY_TIME
|
|
int "MS:The RTT_AUTO_EXE thread loop cmd 1 delay time "
|
|
default 1000
|
|
config RTT_CMD_LOOP_2_STR
|
|
string "[LOOP_CMD2]The RTT_AUTO_EXE thread loop cmd 2"
|
|
default "version"
|
|
config RTT_CMD_LOOP_2_DELAY_TIME
|
|
int "MS:The RTT_AUTO_EXE thread loop cmd 2 delay time"
|
|
default 1000
|
|
|
|
config RTT_CMD_LOOP_TIME
|
|
int "TIME:The RTT_AUTO_EXE loop times"
|
|
default 3
|
|
endif
|
|
|
|
endif
|
|
|