How to use the pyocd.debug.svd.loader.SVDFile.from_builtin 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_nRF51822_xxAA.py View on Github external
def __init__(self, link):
        super(NRF51, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("nrf51.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MAX32625.py View on Github external
def __init__(self, link):
        super(MAX32625, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("max32625.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MK20DX128xxx5.py View on Github external
def __init__(self, link):
        super(K20D50M, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MK20D5.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MK82FN256xxx15.py View on Github external
def __init__(self, transport):
        super(K82F25615, self).__init__(transport, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MK82F25615.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_STM32L475xx.py View on Github external
def __init__(self, transport):
        super(STM32L475xG, self).__init__(transport, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("STM32L4x5.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MIMXRT1021xxxxx.py View on Github external
def __init__(self, link):
        super(MIMXRT1021xxxxx, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MIMXRT1021.xml")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MK22FN512xxx12.py View on Github external
def __init__(self, link):
        super(K22F, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MK22F51212.svd")
github mbedmicro / pyOCD / pyocd / target / builtin / target_MIMXRT1052xxxxB.py View on Github external
def __init__(self, link):
        super(MIMXRT1052xxxxB_hyperflash, self).__init__(link, self.memoryMap)
        self._svd_location = SVDFile.from_builtin("MIMXRT1052.xml")