36 lines
692 B
Plaintext
36 lines
692 B
Plaintext
# Diese Zeile lädt alle Standard-Definitionen von Zephyr
|
|
source "Kconfig.zephyr"
|
|
|
|
choice DEVICE_MODE
|
|
prompt "Device Mode"
|
|
default DEVICE_MODE_MASTER
|
|
|
|
config DEVICE_MODE_MASTER
|
|
bool "Build as master"
|
|
|
|
config DEVICE_MODE_SLAVE
|
|
bool "Build as slave"
|
|
|
|
endchoice
|
|
choice DEVICE_MODE
|
|
prompt "Device Mode"
|
|
default DEVICE_MODE_MASTER
|
|
|
|
config DEVICE_MODE_MASTER
|
|
bool "Build as master"
|
|
|
|
config DEVICE_MODE_SLAVE
|
|
bool "Build as slave"
|
|
|
|
endchoice
|
|
|
|
config SLAVE_DISPLAY_TYPE
|
|
string "Display type (e.g., EPD, OLED)"
|
|
depends on DEVICE_MODE_SLAVE
|
|
default "UNDEFINED"
|
|
|
|
config SLAVE_DISPLAY_SLOT
|
|
int "Display Slot"
|
|
depends on DEVICE_MODE_SLAVE
|
|
default 0
|