I am trying to run Number Theoretic Transform (NTT) for Power Trace Collection on the ChipWhisperer FPGA board using my RTL implementation. However, I keep encountering the following error:
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:642) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:642) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
(ChipWhisperer Scope WARNING|File __init__.py:504) Timeout happened during capture
Capturing traces: 100%|ββββββββββββββββββββββββββ| 1/1 [00:02<00:00, 2.14s/it]
Failed to capture trace for iteration 0
Captured 1 key and 0 traces.
Shape of keys: (1, 32)
Shape of traces: (0,)
To address this, I have attempted to mimic the signal flow of aes_core
by passing NTT inputs through aes_pt
, but I continue to receive the timeout error.
I am looking for debugging suggestions to ensure the trigger is correctly detected. Additionally, I would greatly appreciate a test bench for cw305_top.v
to better understand how to provide inputs and integrate my own code so that the trigger functions correctly. Any help would be valuable!