Ford Peprah
Ford Peprah
Nope. The SDK has no unlock method. The one that exists for Kinetis is based on Freescale's specification.
Maybe. But I imagine that there's a spec out there that we can follow. And OpenOCD probably has something as well that we could look at (I did this for...
Sorry about the late response here, things have been a bit busy with work and a new dog. I think the idea of modifying the library to determine if it...
Hey, sorry about the late response here. I'm not too familiar with the command / tool, but it looks like in the latter, local echo is disabled. Is it possible...
Sorry for getting back to this so late. Is this code pulled form `psutil`? Do you know if a later `psutil` has addressed this issue? It looks like `zipapp` is...
I would rather not add a flag for this, but I think making `_device` be a property on doing it when needed makes sense, and would produce the same result....
So the handle and index are different. Is the breakpoint active if you call `num_active_breakpoints()`? If this is a software breakpoint, did you enable breakpoints by calling `enable_soft_breakpoints()`?
Are you sure you have the right device plugged in? The error dialog suggests you're selecting `100000kHz` as the speed, but your device only supports a maximum speed of `50000kHz`.
Someone added [`open_tunnel()`](https://pylink.readthedocs.io/en/latest/pylink.html#pylink.jlink.JLink.open_tunnel), which takes a serial number and port; I suppose you could pass in the tunnel name in the place of the serial number, and password in place...
Ah, okay. I think I get it. Is your suggestion to treat the `x`s as wildcards, and then match them? E.g. ``` >>> re.findall(re.sub(r'x', '.', 'MIMXRT1064xxx5A'), 'MIMXRT1064CVL5A') ['MIMXRT1064CVL5A'] ``` I...