Hello again, now trying to run RTL verification on the user_proj_example, each test is failing. Seems like they're all failing in the same way, here's an example:
report_test.<locals>.wrapper_func failed
Traceback (most recent call last):
File "/usr/local/lib/python3.10/dist-packages/caravel_cocotb/interfaces/common_functions/test_functions.py", line 115, in wrapper_func
await func(*args, **kwargs)
File "/home/brandonhippe/gf180_test/caravel_user_project/verilog/dv/cocotb/user_proj_tests/counter_la_clk/counter_la_clk.py", line 34, in counter_la_clk
received_val = int ((caravelEnv.monitor_gpio(37,30).binstr + caravelEnv.monitor_gpio(7,0).binstr ),2)
ValueError: invalid literal for int() with base 2: '000000xxxxxxxxxx'
Seems like each is failing when trying to convert vector with x's to int. Thanks again in advance!