Robert Klep
Robert Klep
A device not showing in the output of `lsusb` is a hardware problem. Try using a USB extension cable between your computer and the device.
Possibly something else then, but it has nothing to do with missing drivers I'm afraid.
I would expect the cp210x driver to be loaded as well. You can manually load it to see why it won't load: ``` sudo insmod /lib/modules/cp210x.ko ``` However, the driver...
Try downloading the module again, sounds like it didn't download correctly. In any case, I can't fix hardware issues 🤷🏼♂️
You're not downloading from the correct URL, it should be this: https://github.com/robertklep/dsm7-usb-serial-drivers/raw/refs/heads/main/modules/broadwellnk/dsm-7.2/cp210x.ko
Are you sure that the Coral device has a USB-to-serial interface? Also, I don't see it being present in the output of `lsusb`.
R1000 drivers are [here](https://github.com/robertklep/dsm7-usb-serial-drivers/tree/main/modules/r1000/dsm-7.2). `usbserial.ko` is not a driver I provide, it should come with DSM.
All the 7.2 modules for v1000nk do have the correct "version magic": ``` vermagic=5.10.55+ SMP mod_unload ``` What's the specific problem that you're running in to?
"Device or resource busy" sounds like the module is already loaded. Try running this: `lsmod | grep cdc-acm`
Do they _all_ fail with a "Device or resource busy" error? What does `sudo dmesg` show after trying to load one? As for compilation documentation: there is none. But I...