Merge pull request #647 from chop0/master

vivado 2025.2.1 compatibility: add SW_CRC field to bitstream parser
This commit is contained in:
Gwenhael Goavec-Merou 2026-04-14 15:24:59 +02:00 committed by GitHub
commit 212a025de8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -109,6 +109,8 @@ int BitParser::parseHeader()
_hdr["userId"] = value;
} else if (key == "Version") {
_hdr["version"] = value;
} else if (key == "SW_CRC") {
_hdr["crc"] = value;
} else {
printError("Unknown key " + key);
return -1;