I have a PRUSA printer that would not allow USB / serial communication with Ubuntu 21.10 Server on a raspberry pi CM4.
I am trying to pass the serial port to a Docker image.
I have tried passing /dev/ttyACM0 and /dev/ttyACM1, but it isn't working, because they are not the correct devices.
After some research, it turns out that the PRUSA requires the cdc-acm.ko
kernel module for communication. This module is not included with Ubuntu Server Raspberry Pi by default and the existing serial ports were not the correct ports.
You will have to repeat this procedure every time there is a minor kernel update. Because the source is based on the parent tree, you can update with a git pull from the source if you want to. For my purposes, however, this module really won't be updated much, so I can just re-run the make and make install components when a new kernel is installed by apt.
Install Kernel Source in your home folder
Prepare for build / install
This to prevent the message "no symbol version for module_layout" when loading the module with insmod or modprobe.
backup existing file if it exists (if you already built another version)
change to the directory with the cdc-acm module source files.
build the modules in the directory
install the modules.
make sure the module loads
check dmesg to see if the serial port is added as a device.
Verify Serial Device by ID, so you can pass to Docker container etc.
For extra credit, here is how you pass this serial port to Docker for OctoPrint.