Merge pull request #241 from antmicro/jboc/lpddr4-init-fix

Fix Python header generation for LPDDR4
This commit is contained in:
enjoy-digital 2021-04-01 18:53:38 +02:00 committed by GitHub
commit 478157560f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 7 deletions

View File

@ -827,12 +827,6 @@ def get_sdram_phy_py_header(phy_settings, timing_settings):
r += "init_sequence = [\n"
for comment, a, ba, cmd, delay in init_sequence:
r += " "
r += "(\"" + comment + "\", "
r += str(a) + ", "
r += str(ba) + ", "
r += cmd.lower() + ", "
r += str(delay) + "),"
r += "\n"
r += f" (\"{comment}\", {a}, {ba}, {cmd.lower()}, {delay}),\n"
r += "]\n"
return r