Zlib compress()STM32返回Z_STREAM_ERROR
我是zlib
库和C++的新手。因此,我可以在STM32上压缩char
并使用compress()
或compress2()
。
我在没有在STM32上编译的情况下尝试了样例代码,它起作用了!但是,当我编译到STM32时,它总是返回(-2)或Z_STREAM_ERROR
。当我打印结果时,它只打印第一个byte
。我在设备上还有大约6kb的空闲内存。代码有什么问题吗?
注意:在zconf.h
上,我已经将MAX_MEM_LEVEL
减少到1
,将MAX_WBITS
减少到5
。
char* compressPayload(char* payload, char* outComp) {
Serial.println(payload);
//uLong comprLen = sizeof(outComp);
int ReturnCode;
uLong Length = (uLong)strlen(payload)+1;
uLong comprLen = compressBound(Length);
ReturnCode = compress((Bytef *)outComp, &comprLen, (const Bytef*)payload, Length);
Serial.println(ReturnCode);
return 0;
}
Main上的函数调用:
char jsonNewData[300] = "{"serialNumber":"123456","msg":"000000000000000000000000000000000000000000000001"}";
char jsonNewDataComp[200];
compressPayload(jsonNewData, jsonNewDataComp);
解决方案
经过几天的调查,原因是内存用于缓冲(我只剩下5kb
可用内存,CMIIW)。
在deflate.c
上,我发现:
if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
return Z_STREAM_ERROR;
}
if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
如上所述,在zconf.h
上,我已经将MAX_MEM_LEVEL
减少到1
,将MAX_WBITS
减少到5
。但看起来MAX_WBITS
的最小值是8
(甚至9
)。
zlib是否有其他内存使用严格选项?
相关文章