Jake Fenton

Results 11 comments of Jake Fenton

I'm also having this problem under Ubuntu 17.04, with the same error: `Unable to find version '1.9.2' of package 'xunit.runners'.`

Hi ngirad, I ran into too many issues and spun up a VM on an x64 machine instead. (Notably, I was also working on Manjaro as well.) I know the...

What's the current state of these changes? I'm having the same issue where `--capture-tethered` leaves my XT-4 in an unresponsive state, I'm guessing due to the issues around local vs...

Actually, I'm starting to get my bearings here. It looks like the change @trilader was talking about to get local control working during tethering is [here](https://github.com/gphoto/libgphoto2/blob/f97c3059a/camlibs/ptp2/config.c#L511). If I change that...

If I set my camera to save raw only, no jpeg, I get a different error and nothing downloads: ``` *** Error *** PTP I/O Error ERROR: Could not get...

okay, another update; I suspect we're not properly handling the file download. The source of that "I/O problem" is [here in usb.c](https://github.com/gphoto/libgphoto2/blob/master/camlibs/ptp2/usb.c#L507) where we're validating the announced packet size vs...

@trilader I've never used a custom dissector before in Wireshark--is there a trick to parsing my captured USB traffic with your dissector? online docs aren't proving as helpful as I'd...

@msmeissn apologies, here is a full `log-level=all` log (compressed to reduce size). Again, camera was configured to capture in raw-only, and I have [some local changes](https://github.com/bocajnotnef/libgphoto2/pull/1/files) to allow local release...

okay, fired up the debugger and did some looking around: ``` Breakpoint 1, ptp_usb_getpacket (params=params@entry=0x5555555c3b00, packet=packet@entry=0x7fffffff95c0, rlen=rlen@entry=0x7fffffff95bc, maxsize=1024) at ptp2/usb.c:249 249 GP_LOG_D ( "wtf"); (gdb) bt #0 ptp_usb_getpacket (params=params@entry=0x5555555c3b00, packet=packet@entry=0x7fffffff95c0,...

Oh, I see, `ptp_fujiptpip` is the network shenanigans, hence why we're falling back to the `ptp_usb_getdata` routine since this is over USB. Of course.