build/openfpgaloader: Allow reuse of programmer for consecutive commands and fix --offset.

- Avoid appending to self.cmd on each load_bitstream/flash call to allow reused of programmer object.
- Convert address to str.
This commit is contained in:
Florent Kermarrec 2021-10-21 11:25:32 +02:00
parent 8fa4de5ede
commit d16d4917d6
1 changed files with 7 additions and 7 deletions

View File

@ -22,14 +22,14 @@ class OpenFPGALoader(GenericProgrammer):
self.cmd += ["--freq", str(int(float(freq)))]
def load_bitstream(self, bitstream_file):
self.cmd += ["--bitstream", bitstream_file]
self.call(self.cmd)
cmd = self.cmd + ["--bitstream", bitstream_file]
self.call(cmd)
def flash(self, address, data_file, external=False):
self.cmd += ["--write-flash", "--bitstream", data_file]
cmd = self.cmd + ["--write-flash", "--bitstream", data_file]
if external:
self.cmd += ["--external-flash"]
cmd += ["--external-flash"]
if address:
self.cmd.append("--offset")
self.cmd.append(address)
self.call(self.cmd)
cmd += ["--offset"]
cmd += [str(address)]
self.call(cmd)