Arun (Arundale Ramanathan)
Arun (Arundale Ramanathan)
Hi, no what is the error you are facing?
Hi, can we try the same without these lines: ``` File myFile; myFile = SD.open("/testdb.db", FILE_WRITE); // close the file: myFile.close(); ``` Does the example work without changes?
You could try changing the stack settings in the config file of this library. But I don't this they would work seamlessly given the limited memory available to operate.
Replying here for now: - what happens when encoding arbitrary byte array (eg. utf8 with transmission errors) It will consider them as binary characters and encode them, but compression ratio...
> * The C Library won't write past the length of the buffer passed, This applies only if the library is compiled with `-DUNISHOX_API_WITH_OUTPUT_LEN=1` and `unishox2_(de)compress()` is used with an...
Hi, Thank you for the PR. I am still making some improvements to `unishox2.c`. So I will take care of your problem while I am at it. I am thinking...
@CalebProvost This has been fixed now
Hi, you could change the code to accomplish this. But you can use code from this library: https://github.com/siara-cc/Unishox_Arduino_Progmem_lib to achieve what you want without changing anything. It does not use...
Hi, I agree the decompress code should check for NULL, but is the input valid? Was it obtained from `unishox2_compress`?
ok, I will fix the code to check NULL. Even if it might fix this and not crash, I am not sure if there will be other cases where it...