Skip to content

Commit

Permalink
tasks: add pluto and m2k as exception for diagnostics
Browse files Browse the repository at this point in the history
Signed-off-by: Trecia Agoylo <[email protected]>
  • Loading branch information
tagoylo committed Nov 24, 2024
1 parent 9548189 commit 14b5e91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nebula/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,8 +875,9 @@ def board_diagnostics_manager(
board_name=board_name,
vivado_version=vivado_version,
)
if not m.jtag_use:
raise Exception("JTAG not initialized")
if board_name not in ["m2k", "pluto"]:
if not m.jtag_use:
raise Exception("JTAG not initialized")


@task(
Expand Down

0 comments on commit 14b5e91

Please sign in to comment.