I’m not familiar with this specific version of Armbian because I’m using the R-01. But I’ve used older Armbians on a number of other SBCs. Did you enable SPI with armbian-config? Usually you have to turn on any hardware features you want to use. Otherwise everything is configured as generic GPIO pins.
I enabled spi-spidev and rebooted and don’t see any /dev/spidev devices. dmesg sows “GICv3 256 SPIs implemented” but haven’t tried installing any other other stuff like the wiringpi_cpi stuff so that may be the reason.
I’m not sure of the context of this statement but I will mention the things that I would look at and check. I can only think of a few things that would prevent the /dev/spiev* devices from showing up:
The device tree doesn’t have the SPI devices enabled/listed. That should not be the case from your statement.
The kernel modules aren’t loading. Besides the hardware specific driver, which sounds like it loaded, you need the “spidev” module.
The module isn’t completely configured. You might need some additional arguments somewhere. Check the OS documentation. On my OrangePi running Armbian I need these two lines in the /boot/armbianEnv.txt:
param_spidev_spi_bus=1
param_spidev_spi_cs=1
The needed values may be different for you.
Broken udev rules or rules renaming it.
Some other use conflicting with the SPI device, like GPIO.
Thank you @ChipMaster I will check, I am still coming up to speed on this stuff and suspect it may be kernel or other related but I was trying the first (easy) fx you suggested. I will report back with anything new.
okay so I noticed on the CPI image, the device was spidev2.0 not spidev0.0 so I changed the armbianEnv file to reflect that.
The printer software starts at boot now but I think there’s a size/scaling issue because while the printer works in the CPI image, it just very slowly feeds the paper with no printing on it on the Armbian image.
I did notice that changing the post-print feed to 15mm in CUPs and printing a test page resulting in the weird slow feed/no print issue but at the end, it smoothly fed 15mm of blank paper, so some pieces are working correctly.
I’ll keep hitting it with a stick but I’m not sure what I’m missing. I feel so close.
Maybe the devterm specific kernel overlays? I’m a bit out of my depth