Skip to content

Commit

Permalink
Merge pull request #912 from flit/bugfix/jlink_probe
Browse files Browse the repository at this point in the history
JLink: fix regression related to locking.
  • Loading branch information
flit committed Jul 19, 2020
1 parent bb6302d commit eb050db
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyocd/probe/jlink_probe.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def get_probe_with_id(cls, unique_id):
six.raise_from(cls._convert_exception(exc), exc)

def __init__(self, serial_number):
super(JLinkProbe, self).__init__()
self._link = self._get_jlink()
if self._link is None:
raise exceptions.ProbeError("unable to open JLink DLL")
Expand Down

0 comments on commit eb050db

Please sign in to comment.