Skip to content

Commit

Permalink
Fix handling of ILA data directories with spaces in them
Browse files Browse the repository at this point in the history
  • Loading branch information
leonschoorl authored and rslawson committed Feb 26, 2025
1 parent 67a6502 commit 5587cc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bittide-shake/src/Clash/Shake/Vivado.hs
Original file line number Diff line number Diff line change
Expand Up @@ -927,8 +927,8 @@ runHitlTestCase v testCase@HitlTestCase{name, parameters} driverFunc probesFileP
ilaShortName <- mkUniqShortName usedShortNamesVar ilaShortName0 (fromHwIla ila)
execCmd_ v "current_hw_ila_data" ["[upload_hw_ila_data [current_hw_ila]]"]
-- Legacy CSV excludes radix information
execCmd_ v "write_hw_ila_data" ["-force", "-legacy_csv_file " <> dir </> ilaShortName]
execCmd_ v "write_hw_ila_data" ["-force", "-vcd_file " <> dir </> ilaShortName]
execCmd_ v "write_hw_ila_data" ["-force", "-legacy_csv_file " <> embrace (dir </> ilaShortName)]
execCmd_ v "write_hw_ila_data" ["-force", "-vcd_file " <> embrace (dir </> ilaShortName)]

-- deassert all START signals
forM_ (sortOn (prettyShow . fst . fst) (toAscList parameters)) $ \((hwT, _), _param) -> do
Expand Down

0 comments on commit 5587cc3

Please sign in to comment.