bitparser: Add `COMPRESS` key.

This commit is contained in:
Vegard Storheil Eriksen 2026-04-20 21:01:42 +02:00
parent 6520946400
commit 22c18f7d57
1 changed files with 2 additions and 0 deletions

View File

@ -111,6 +111,8 @@ int BitParser::parseHeader()
_hdr["version"] = value; _hdr["version"] = value;
} else if (key == "SW_CRC") { } else if (key == "SW_CRC") {
_hdr["crc"] = value; _hdr["crc"] = value;
} else if (key == "COMPRESS") {
_hdr["compress"] = value;
} else { } else {
printWarn("Unknown key " + key); printWarn("Unknown key " + key);
} }