I'm working with an Odroid XU4, Ubuntu version 20.04.4 LTS, kernel version 5.4.167+. I want to use the expansion connector CON10 on the Odroid to operate an atmega board. I use avrdude to access the port and flash the atmega. The problem is that avrdude can't access the device port /dev/ttySAC0.
Code: Select all
avrdude: ser_open(): can't open device "/dev/ttySAC0": No such file or directory
Code: Select all
odroid@odroid:~/Documents$ dmesg | grep tty
[ 0.000000] Kernel command line: console=tty1 console=ttySAC2,115200n8 root=UUID=e139ce78-9841-40fe-8823-96a304a09859 rootwait ro fsck.repair=yes net.ifnames=0 HPD=true vout=hdmi usbhid.quirks=0x0eef:0x0005:0x0004 smsc95xx.macaddr=00:1e:06:61:7a:39 false s5p_mfc.mem=16M
[ 0.002950] printk: console [tty1] enabled
[ 1.379323] 12c20000.serial: ttySAC2 at MMIO 0x12c20000 (irq = 62, base_baud = 0) is a S3C6400/10
[ 2.293216] printk: console [ttySAC2] enabled
[ 7.685854] systemd[1]: Created slice system-serial\x2dgetty.slice.
Does anyone have any idea what the problem could be and what else I can look for?