You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
If you call read_stb() more than ~128 times, there's a btag mismatch.
I was able to fix the problem by changing this line:
rstb_btag = (self.last_rstb_btag % 128) + 1to
rstb_btag = (self.last_rstb_btag + 1) % 128