Skip to content

Commit 764d54f

Browse files
committed
Fix Pearl chip SKU and core ID in targets.
1 parent 91ad34a commit 764d54f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workspace_tools/targets.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1692,10 +1692,10 @@ def __init__(self):
16921692
class EFM32PG_STK3401(Target):
16931693
def __init__(self):
16941694
Target.__init__(self)
1695-
self.core = "Cortex-M4"
1695+
self.core = "Cortex-M4F"
16961696
self.extra_labels = ['Silicon_Labs', 'EFM32']
1697-
self.macros = ['EFM32PG1B200F256GM32']
1698-
self.supported_toolchains = ["GCC_ARM", "ARM", "uARM"]
1697+
self.macros = ['EFM32PG1B200F256GM48']
1698+
self.supported_toolchains = ["GCC_ARM", "ARM", "uARM", "IAR"]
16991699
self.default_toolchain = "ARM"
17001700

17011701

0 commit comments

Comments
 (0)