rt-thread-official/bsp/ft32/libraries/Drivers/Kconfig

35 lines
882 B
Plaintext
Raw Normal View History

2022-03-23 11:03:48 +08:00
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
2023-01-09 10:14:23 +08:00
bool
2022-03-23 11:03:48 +08:00
# "USB High Speed (HS) Mode"
config BSP_USBD_SPEED_HSINFS
2023-01-09 10:14:23 +08:00
bool
2022-03-23 11:03:48 +08:00
# "USB High Speed (HS) Core in FS mode"
config BSP_USBD_PHY_EMBEDDED
2023-01-09 10:14:23 +08:00
bool
2022-03-23 11:03:48 +08:00
# "Using Embedded phy interface"
config BSP_USBD_PHY_UTMI
2023-01-09 10:14:23 +08:00
bool
2022-03-23 11:03:48 +08:00
# "UTMI: USB 2.0 Transceiver Macrocell Interace"
config BSP_USBD_PHY_ULPI
2023-01-09 10:14:23 +08:00
bool
2022-03-23 11:03:48 +08:00
# "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)
2023-01-09 10:14:23 +08:00
default n
2022-03-23 11:03:48 +08:00