Hello,
I connected a SK-AM64B to my pc using the usb-c connector with the label "DEBUG CONSOLE USB" and I have access to the board with minicom an /dev/ttyUSB1.
Then I installed the SDK ti-processor-sdk-linux-am64xx-evm-09.00.00.03 and run setup.sh which calls ./bin/setup-uboot-env.sh which cannot find my evm.
There is the following code section in this script.
board="unknown"
check_for_board() {
lsusb -vv -d 0403:6011 > /dev/null 2>&1
if [ "$?" = "0" ]
then
board="am65x"
fi
}
Could you please double check if the usb id or the board name has to be adapted.
lsusb lists the following device on the board which I use to connect to.
Bus 003 Device 007: ID 10c4:ea70 Silicon Labs CP2105 Dual UART Bridge
Thanks.