Kconfig.projbuild 660 B

123456789101112131415161718192021
  1. menu "I2S STD Example Configuration"
  2. choice DUPLEX_MODE
  3. prompt "I2S STD duplex/simplex select"
  4. default USE_DUPLEX
  5. help
  6. Select duplex mode or simplex mode for the example
  7. config USE_DUPLEX
  8. bool "Duplex TX and RX channels"
  9. help
  10. Allocate TX and RX channels on a same I2S controller in duplex mode, sharing the BCLK and WS signal
  11. config USE_SIMPLEX
  12. bool "Simplex TX and RX channels"
  13. depends on !IDF_TARGET_ESP32S2
  14. help
  15. Allocate TX and RX channels in duplex mode, they are totally separate.
  16. endchoice
  17. endmenu