Skip to content

Commit 90711fd

Browse files
committed
a100t bitstream size
1 parent cfa8080 commit 90711fd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/SmartWaveAPI/smartwave.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,8 @@ def updateFPGABitstream(self, bitstream_path: Optional[str] = None, blocking: bo
869869
# size check
870870
f.seek(0, os.SEEK_END)
871871
fileSize = f.tell()
872-
if fileSize != 0x21728c:
872+
#if fileSize != 0x21728c:
873+
if fileSize != 0x3a607c:
873874
raise Exception(
874875
"The bitstream seems to be of the wrong size: 0x%x. Please check for correctness." % fileSize)
875876

0 commit comments

Comments
 (0)