12345678910111213141516171819202122232425262728293031323334 |
- if BSP_USING_USBD
- config BSP_USBD_TYPE_FS
- bool
- # "USB Full Speed (FS) Core"
- config BSP_USBD_TYPE_HS
- bool
- # "USB High Speed (HS) Core"
- config BSP_USBD_SPEED_HS
- bool
- # "USB High Speed (HS) Mode"
- config BSP_USBD_SPEED_HSINFS
- bool
- # "USB High Speed (HS) Core in FS mode"
- config BSP_USBD_PHY_EMBEDDED
- bool
- # "Using Embedded phy interface"
- config BSP_USBD_PHY_UTMI
- bool
- # "UTMI: USB 2.0 Transceiver Macrocell Interace"
- config BSP_USBD_PHY_ULPI
- bool
- # "ULPI: UTMI+ Low Pin Interface"
- endif
- config BSP_USING_CRC
- bool "Enable CRC (CRC-32 0x04C11DB7 Polynomial)"
- select RT_USING_HWCRYPTO
- select RT_HWCRYPTO_USING_CRC
- # "Crypto device frame dose not support above 8-bits granularity"
- depends on (SOC_SERIES_FT32F0)
- default n
|