20 lines
377 B
Plaintext
20 lines
377 B
Plaintext
|
# Copyright (c) 2023 Fabian Blatz <fabianblatz@gmail.com>
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
config LV_Z_SHELL
|
||
|
bool "LVGL Shell"
|
||
|
depends on SHELL
|
||
|
help
|
||
|
Enable LVGL shell for testing.
|
||
|
|
||
|
if LV_Z_SHELL
|
||
|
|
||
|
config LV_Z_MAX_MONKEY_COUNT
|
||
|
int "Maximum number of monkeys"
|
||
|
default 4
|
||
|
depends on LV_USE_MONKEY
|
||
|
help
|
||
|
Number of monkey instances that can exist in parallel
|
||
|
|
||
|
endif
|