Brian Pugh

Results 342 comments of Brian Pugh

when building the resulting tar should look like: ```console $ ls -alh dist/ total 224 drwxr-xr-x@ 3 brianpugh staff 96B Aug 2 09:48 . drwxr-xr-x@ 26 brianpugh staff 832B Aug...

Your watchdog is triggering, which is indirectly related to the filesystem filling up. We opened up this [upstream issue](https://github.com/littlefs-project/littlefs/issues/1063) earlier this year. Lemme see if I can whip up the...

hmmm, sorry i don't have any ideas off the top of my head to what could be causing this. Are you 100% sure that such a large amount of space...

Hi @perotom! At a high level, i think this looks good. Inside your `writeTrackingFile`, the most efficient (smallest ram usage) will look similar to the [tamp_compressor_compress_cb](https://github.com/BrianPugh/tamp/blob/c62354cb80c555063c20d663a088aff1bc82b45a/tamp/_c_src/tamp/compressor.c#L217) implementation. Below is my...

with the newly released v1.7.0 version, you can replace ```c if (compressor->input_size == sizeof(compressor->input)) { ``` with ```c if (tamp_compressor_full(compressor) { ```

you know what, this has inspired me enough to write a file-api to simplify this fairly common use-case. So expect that in a few days.

My personal schedule has actually gotten a little hectic; i'll still work on this but i'll say it's "within a month" thing rather than "few days"