Skip to content

Commit

Permalink
rcs_artic_term_bmc_card: Fix is -> ==.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Mar 17, 2022
1 parent 496b2cf commit 0f82db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex_boards/platforms/rcs_arctic_tern_bmc_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ class Platform(LatticePlatform):

def __init__(self, device="LFE5UM5G", speed_grade="6", toolchain="trellis", **kwargs):
assert device in ["LFE5UM5G", "LFE5UM"]
if device is "LFE5UM5G":
if device == "LFE5UM5G":
speed_grade = "8"
LatticePlatform.__init__(self, device + "-85F-" + speed_grade + "CABGA381", _io, toolchain=toolchain, **kwargs)

Expand Down

0 comments on commit 0f82db2

Please sign in to comment.