mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 02:46:17 +00:00
This patch adds a USB device driver for the USBHS device that can be found on Atmel SAM E70 SoC family. Only the FIFO mode is supported (as opposed to DMA). It supports LS, FS and HS modes, but defaults to FS mode as Zephyr does not fully support HS mode yet. Tested examples on an Atmel SMART SAM E70 Xplained Board: * usb/cdc_acm * usb/hid-mouse * usb/mass Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
7 lines
337 B
CMake
7 lines
337 B
CMake
zephyr_sources_ifdef(CONFIG_USB_DW usb_dc_dw.c)
|
|
zephyr_sources_ifdef(CONFIG_USB_DC_STM32 usb_dc_stm32.c)
|
|
zephyr_sources_ifdef(CONFIG_USB_DC_SAM0 usb_dc_sam0.c)
|
|
zephyr_sources_ifdef(CONFIG_USB_DC_SAM usb_dc_sam.c)
|
|
zephyr_sources_ifdef(CONFIG_USB_NRF52840 usb_dc_nrfx.c)
|
|
zephyr_sources_ifdef(CONFIG_USB_KINETIS usb_dc_kinetis.c)
|