Skip to content

Commit

Permalink
Put HMC7044 at from of lit
Browse files Browse the repository at this point in the history
Signed-off-by: Travis F. Collins <[email protected]>
  • Loading branch information
tfcollins committed Jun 4, 2024
1 parent 4126ab0 commit 1c9b0b8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions webapp/app/src/pages/clockconfigurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
options_to_skip = ["list_references_available", "d_syspulse"]
parts_to_ignore = ["ad9545", "ad9523_1"]
sp = [p for p in sp if p not in parts_to_ignore]
# Put HMC7044 at the front
sp = [p for p in sp if p != "hmc7044"]
sp.insert(0, "hmc7044")


class ClockConfigurator(Page):
Expand Down

0 comments on commit 1c9b0b8

Please sign in to comment.