mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
478 B
Plaintext
27 lines
478 B
Plaintext
menu "iBeacon Example Configuration"
|
|
|
|
choice IBEACON_MODE
|
|
bool "iBeacon Mode"
|
|
default IBEACON_SENDER
|
|
help
|
|
Select the iBeacon Mode.
|
|
|
|
config IBEACON_SENDER
|
|
bool "iBeacon Sender Mode"
|
|
help
|
|
Select the iBeacon Sender Mode.
|
|
|
|
config IBEACON_RECEIVER
|
|
bool "iBeacon Receiver Mode"
|
|
help
|
|
Select the iBeacon Receiver Mode.
|
|
|
|
endchoice
|
|
|
|
config IBEACON_MODE
|
|
int
|
|
default 0 if IBEACON_SENDER
|
|
default 1 if IBEACON_RECEIVER
|
|
|
|
endmenu
|