Daniel C

Results 68 comments of Daniel C

I guess it has to be, PC auto save isn't on the H2

Increasing the buffer size of https://github.com/petabyt/camlib/blob/365de61c84f388bd52d82def21e0577e8aab3ede/src/cl_data.h#L37 Should fix this, I'll have that done

Keep in mind support for this feature was barely implemented and tested, I probably shouldn't even have noted it at all. By 'empty image' what do you mean? Is it...

It it's zero bytes, it looks like the camera is sending us zero bytes for the image: ``` FILE *f = fopen(buffer, "wb"); if (f == NULL) return PTP_RUNTIME_ERR; app_print("Downloading...

If it's zero bytes I assume it's a quirk of how X-H2 handles file transfers

That property isn't used on wireless tether mode, communication is the exact same as it would be on PTP/USB

This has been on the backlog for a very long time. I have a big list of things I want to get to before that, but it's definitely something I...

I tried a while ago and I had some problems with React Native FFI support. Fudge is mostly C/C++ and being able to do a lot of Java/C interop is...

The tci code that handles `INDEX_op_call` will be problematic because it passes a fixed number of arguments to helper functions. Passing more arguments than a function accepts is undefined behavior...

I get a segfault doing a memory write in RISC-V: Tested against this feature/tci branch. Not in emscripten. ``` #include #include #include int main(void) { uc_engine *uc; uc_err err; //...