Kconfig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. if ARCH_BOARD_CLICKER2_STM32
  6. config CLICKER2_STM32_MB1_SPI
  7. bool "mikroBUS1 SPI"
  8. default n
  9. select STM32_SPI3
  10. ---help---
  11. Enable SPI support on mikroBUS1 (STM32 SPI3)
  12. config CLICKER2_STM32_MB2_SPI
  13. bool "mikroBUS2 SPI"
  14. default n
  15. select STM32_SPI2
  16. ---help---
  17. Enable SPI support on mikroBUS1 (STM32 SPI2)
  18. config CLICKER2_STM32_MB1_BEE
  19. bool "mikroBUS1 MRF24J40 BEE"
  20. default y
  21. depends on IEEE802154_MRF24J40
  22. select CLICKER2_STM32_MB1_SPI
  23. ---help---
  24. Enable support for MRF24J40 BEE on mikroBUS1
  25. config CLICKER2_STM32_MB2_BEE
  26. bool "mikroBUS2 MRF24J40 BEE"
  27. default n
  28. depends on IEEE802154_MRF24J40
  29. select CLICKER2_STM32_MB2_SPI
  30. ---help---
  31. Enable support for MRF24J40 BEE on mikroBUS2
  32. config CLICKER2_STM32_MRF24J40LH_VERBOSE
  33. bool "Verbose MRF24J40 lowerhalf"
  34. default n
  35. depends on IEEE802154_MRF24J40 && DEBUG_WIRELESS_INFO
  36. ---help---
  37. Enable verbose syslog for MRF24J40 lowerhalf
  38. endif # ARCH_BOARD_CLICKER2_STM32