Skip to content

Commit

Permalink
target: family: remove part number match for NXP MIMXRTxxxx series fa…
Browse files Browse the repository at this point in the history
…mily (pyocd#1594)

The IMXRT family class isn't needed for pack-based targets any more
now that pyOCD supports the debug sequences present in the IMXRT packs.
  • Loading branch information
flit authored Jul 23, 2023
1 parent 94f1860 commit 401a01c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pyocd/target/family/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class FamilyInfo(NamedTuple):
# present), or the 'Dname' or 'Dvariant' part numbers. The comparisons are performed in order from
# specific to general, starting with the part number.
FAMILIES = [
FamilyInfo("NXP", re.compile(r'MIMXRT[0-9]{4}.*'), target_imxrt.IMXRT ),
FamilyInfo("NXP", re.compile(r'MK[LEVWS]?.*'), target_kinetis.Kinetis ),
FamilyInfo("Nordic Semiconductor", re.compile(r'nRF52[0-9]+.*'), target_nRF52.NRF52 ),
FamilyInfo("Nordic Semiconductor", re.compile(r'nRF91[0-9]+.*'), target_nRF91.NRF91 ),
Expand Down

0 comments on commit 401a01c

Please sign in to comment.