I'm using Yocto-dunfell for getting custom my Raspberrypi3 image. Here I want to enable serial-console via uart1. for that I have given change in my files-
local.conf:
ENABLE_UART = "1"
ENABLE_KGBD = "1"
and changes in my config.txt file:
dtoverlay=pi3-disable-wifi"
dtoverlay=pi3-disable-bt"
dtoverlay=uart1,txd1_pin=32,rxd1_pin=33"
enable_uart=1
core_freq=250
force_turbo=1
and cmdline.txt:
dwc_otg.lpm_enable=0 console=serial1,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait kgdboc=serial0,115200
After these changes also I'm not getting serial data in my minicom. Please assist me if any further changes are required.
Thanks & Regards.
dtoverlay=uart1,txd1_pin=32,rxd1_pin=33
is unlikely to help because the pins are inaccessible on a Pi3 - the ONLY usable pins are 14,15. – Milliways Feb 16 '21 at 10:15