Merge pull request #652 from viktor-pd/master

gowin: fix checksum header key typo
This commit is contained in:
Gwenhael Goavec-Merou 2026-04-26 11:33:08 +02:00 committed by GitHub
commit 7ec3e14a89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ void Gowin::checkCRC()
* is used, try to compare with this value
*/
try {
std::string hdr = _fs->getHeaderVal("checkSum");
std::string hdr = _fs->getHeaderVal("CheckSum");
if (!hdr.empty()) {
if (ucode == strtol(hdr.c_str(), NULL, 16))
goto success;