Skip to content

Commit

Permalink
make the programmer slower but more reliable
Browse files Browse the repository at this point in the history
  • Loading branch information
josuah committed Sep 3, 2023
1 parent 344c7b5 commit b2fce1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litex/build/lattice/programmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class EcpprogProgrammer(GenericProgrammer):
needs_bitreverse = False

def flash(self, address, bitstream_file):
self.call(["ecpprog", "-o", str(address), bitstream_file])
self.call(["ecpprog", "-s", "-o", str(address), bitstream_file])

def load_bitstream(self, bitstream_file):
self.call(["ecpprog", "-S", bitstream_file])
self.call(["ecpprog", "-s", "-S", bitstream_file])

0 comments on commit b2fce1b

Please sign in to comment.