From b82b3b7ecffee3740641b547a238c918db0892c2 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 30 Apr 2020 21:45:53 +0200 Subject: [PATCH] integration/soc: rename usb_cdc to usb_acm. As discussed on Discord recently. --- litex/soc/integration/soc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex/soc/integration/soc.py b/litex/soc/integration/soc.py index d22989a20..55557ecf1 100644 --- a/litex/soc/integration/soc.py +++ b/litex/soc/integration/soc.py @@ -958,8 +958,8 @@ class LiteXSoC(SoC): tx_fifo_depth = fifo_depth, rx_fifo_depth = fifo_depth)) - # USB CDC (with ValentyUSB core) - elif name in ["usb_cdc"]: + # USB ACM (with ValentyUSB core) + elif name in ["usb_acm"]: import valentyusb.usbcore.io as usbio import valentyusb.usbcore.cpu.cdc_eptri as cdc_eptri usb_pads = self.platform.request("usb")