Skip to content

Commit

Permalink
Name disparity fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rslawson committed Feb 21, 2025
1 parent a115ce4 commit 947b199
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions bittide-instances/src/Bittide/Instances/Hitl/Demo.hs
Original file line number Diff line number Diff line change
Expand Up @@ -612,12 +612,12 @@ demoTest boardClkDiff refClkDiff rxns rxps miso jtagIn =
, jtagOut :: Signal Basic125 JtagOut
, transceiversFailedAfterUp :: Signal Basic125 Bool
, allStable :: Signal Basic125 Bool
, noFifoOverflows :: Signal Basic125 Bool
, noFifoUnderflows :: Signal Basic125 Bool
, fifoOverflows :: Signal Basic125 Bool
, fifoUnderflows :: Signal Basic125 Bool
) = dut refClk testReset boardClk rxns rxps allProgrammed miso jtagIn

fifoSuccess :: Signal Basic125 Bool
fifoSuccess = noFifoUnderflows .&&. noFifoOverflows
fifoSuccess = not <$> (fifoUnderflows .||. fifoOverflows)

endSuccess :: Signal Basic125 Bool
endSuccess = trueFor (SNat @(Seconds 5)) refClk testReset (allStable .&&. fifoSuccess)
Expand All @@ -643,8 +643,8 @@ demoTest boardClkDiff refClkDiff rxns rxps miso jtagIn =
:> "dt_jtagOut"
:> "dt_transceiversFailedAfterUp"
:> "dt_allStable"
:> "dt_noFifoOverflows"
:> "dt_noFifoUnderflows"
:> "dt_fifoOverflows"
:> "dt_fifoUnderflows"
:> Nil
)
{ depth = D32768
Expand All @@ -660,8 +660,8 @@ demoTest boardClkDiff refClkDiff rxns rxps miso jtagIn =
jtagOut
transceiversFailedAfterUp
allStable
noFifoOverflows
noFifoUnderflows
fifoOverflows
fifoUnderflows

captureFlag :: Signal Basic125 Bool
captureFlag =
Expand Down

0 comments on commit 947b199

Please sign in to comment.