Hello Everybody,
I have successfully installed Arch on my new RPi4 and I would like to use UART, in parallel with the i2c bus, to finally use that board: BerryGPS-IMUv3, which uses UART for the GPS module. I have changes to following file like so:
/boot/config.txt
$this->bbcode_second_pass_code('', '
gpu_mem=64
initramfs initramfs-linux.img followkernel
device_tree_param=spi=on
dtparam=i2c_arm=on
enable_uart=1
')
/boot/cmdline.txt
$this->bbcode_second_pass_code('', '
root=/dev/mmcblk0p2 rw rootwait console=tty1 selinux=0 plymouth.enable=0 smsc95xx.turbo_mode=N dwc_otg.lpm_enable=0 elevator=noop
')
but
$this->bbcode_second_pass_code('', '
minicom -b 9660 -o -D /dev/ttyAMA0
')
shows nothing.
What am I missing here?