How to use the pyocd.debug.svd.loader.SVDFile function in pyocd

To help you get started, we’ve selected a few pyocd examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mbedmicro / pyOCD / pyocd / target / builtin / target_MK28FN2M0xxx15.py View on Github external
def __init__(self, transport):
        super(K28F15, self).__init__(transport, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MK28FA15.xml")
github mbedmicro / pyOCD / pyocd / target / builtin / target_LPC824M201JHI33.py View on Github external
def __init__(self, link):
        super(LPC824, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("LPC824.xml")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MKL28Z512xxx7.py View on Github external
def __init__(self, link):
        super(KL28x, self).__init__(link, self.singleMap)
        self.is_dual_core = False

        self._svd_location = SVDFile.from_builtin("MKL28T7_CORE0.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MKW41Z512xxx4.py View on Github external
def __init__(self, transport):
        super(KW41Z4, self).__init__(transport, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MKW41Z4.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_LPC54608J512ET180.py View on Github external
def __init__(self, link):
        super(LPC54608, self).__init__(link, self.memoryMap)
        self.ignoreReset = False
        self._svd_location = SVDFile.from_builtin("LPC54608.xml")
github mbedmicro / pyOCD / pyocd / target / builtin / target_LPC11U24FBD64_401.py View on Github external
def __init__(self, link):
        super(LPC11U24, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("LPC11Uxx_v7.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MKE15Z256xxx7.py View on Github external
def __init__(self, link):
        super(KE15Z7, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MKE15Z7.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_LPC54114J256BD64.py View on Github external
def __init__(self, link):
        super(LPC54114, self).__init__(link, self.memoryMap)
        self.ignoreReset = False
        self._svd_location = SVDFile.from_builtin("LPC54114_cm4.xml")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MKV11Z128xxx7.py View on Github external
def __init__(self, transport):
        super(KV11Z7, self).__init__(transport, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MKV11Z7.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MKW36Z512xxx4.py View on Github external
def __init__(self, transport):
        super(KW36Z4, self).__init__(transport, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MKW36Z4.svd")