19 lines
305 B
Plaintext
19 lines
305 B
Plaintext
|
menu "Application Configuration"
|
||
|
|
||
|
choice DIRECTION
|
||
|
prompt "Communication polarity"
|
||
|
default SENDER
|
||
|
help
|
||
|
Select Communication polarity.
|
||
|
config SENDER
|
||
|
bool "As the sender"
|
||
|
help
|
||
|
As the sender.
|
||
|
config RECEIVER
|
||
|
bool "As the receiver"
|
||
|
help
|
||
|
As the receiver.
|
||
|
endchoice
|
||
|
|
||
|
endmenu
|