mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
21 lines
479 B
Plaintext
21 lines
479 B
Plaintext
menu "Example Configuration"
|
|
|
|
choice EXAMPLE_SYNC_FROM
|
|
prompt "Where the sync event is generated from"
|
|
default EXAMPLE_SYNC_FROM_GPIO
|
|
help
|
|
Select MCPWM sync source.
|
|
|
|
config EXAMPLE_SYNC_FROM_GPIO
|
|
bool "GPIO"
|
|
|
|
config EXAMPLE_SYNC_FROM_TEZ
|
|
bool "Timer TEZ"
|
|
|
|
config EXAMPLE_SYNC_FROM_SOFT
|
|
bool "Software"
|
|
depends on SOC_MCPWM_SWSYNC_CAN_PROPAGATE
|
|
endchoice
|
|
|
|
endmenu
|