Ford Peprah
Ford Peprah
Does `ctypes.util.find_library('libjlinkarm.so') work when you export the `LD_LIBRARY_PATH`?
Could this have to do with the version of Python you're using? 64-bit vs 32-bit?
Re: the second thing. Up until a certain version, the DLL inherently prevented accessing two or more J-Links at the same time. Copying to a temporary file provided a work-around...
The rename would probably break OSX, and the copy workaround would break multiple device access.
I know this is two years old, but we might have a concrete fix for this as outlined in #132, which removes the need for the workaround; this should be...
So there are two different types of connections: `connected()` returns a boolean indicating a connection to the emulator, while `target_connected()` returns a boolean indicating a connection to the device under...
Sorry about the late response here. Are there any logs if you run with verbosity enabled?
It might be an issue in the shared library unfortunately, which we can't fix in this Python library, unfortunately :/
Sorry, meant to reply to this over the weekend. Unfortunately, I've never used that API. I'll take a look later to see. What issue are you running into?
There's an example of binding a callback here: https://github.com/square/pylink/blob/master/pylink/jlink.py#L415 Note that we have to create a `ctype` function to indicate what the function is: `LOG_PROTOTYPE = ctypes.CFUNCTYPE(None, ctypes.c_char_p)`; this basically...