Hello,
I’m using the ChipWhisperer CW310 target board and ChipWhisperer-Husky capture board. I have implemented a simple FPGA design that sends a character (e.g., '0'
) through a UART interface. I connect this to the SAM3X USB Serial Console and I’m attempting to read the output on my PC through the USB-C data port on the CW310 board.
I program the bitstream using the Python API:
target = cw.target(scope, cw.targets.CW310, bsfile="top.bit") # Create a target object
I then try to receive the UART output using minicom
on my PC:
minicom -D /dev/ttyACM0
However, I don’t see any output. Here are the pin assignments for the serial connection:
set_property -dict { PACKAGE_PIN AB22 IOSTANDARD LVCMOS33 } [get_ports { tx }]; #IO_L17P_T2_12 - This is an OUTPUT from the FPGA
set_property -dict { PACKAGE_PIN AA24 IOSTANDARD LVCMOS33 } [get_ports { rx }]; #IO_L12N_T1_MRCC_12 - This is an INPUT to the FPGA
Could anyone provide guidance on what might be going wrong, or how to verify the connection with the SAM3X serial interface?
Thanks in advance!