Kconfig 888 B

12345678910111213141516171819202122232425262728293031323334
  1. if BSP_USING_USBD
  2. config BSP_USBD_TYPE_FS
  3. bool
  4. # "USB Full Speed (FS) Core"
  5. config BSP_USBD_TYPE_HS
  6. bool
  7. # "USB High Speed (HS) Core"
  8. config BSP_USBD_SPEED_HS
  9. bool
  10. # "USB High Speed (HS) Mode"
  11. config BSP_USBD_SPEED_HSINFS
  12. bool
  13. # "USB High Speed (HS) Core in FS mode"
  14. config BSP_USBD_PHY_EMBEDDED
  15. bool
  16. # "Using Embedded phy interface"
  17. config BSP_USBD_PHY_UTMI
  18. bool
  19. # "UTMI: USB 2.0 Transceiver Macrocell Interace"
  20. config BSP_USBD_PHY_ULPI
  21. bool
  22. # "ULPI: UTMI+ Low Pin Interface"
  23. endif
  24. config BSP_USING_CRC
  25. bool "Enable CRC (CRC-32 0x04C11DB7 Polynomial)"
  26. select RT_USING_HWCRYPTO
  27. select RT_HWCRYPTO_USING_CRC
  28. # "Crypto device frame dose not support above 8-bits granularity"
  29. depends on (SOC_SERIES_FT32F0)
  30. default n