We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2fd0ea commit 6710e79Copy full SHA for 6710e79
tools/export/mcuxpresso/__init__.py
@@ -70,7 +70,7 @@ class MCUXpresso(GNUARMEclipse):
70
@classmethod
71
def is_target_supported(cls, target_name):
72
# targes suppoerted when .cproject templatefile exists
73
- if exists('./export/mcuxpresso/' + target_name + '_cproject.tmpl'):
+ if exists(cls.TEMPLATE_DIR + '/mcuxpresso/' + target_name + '_cproject.tmpl'):
74
target = TARGET_MAP[target_name]
75
return apply_supported_whitelist(
76
cls.TOOLCHAIN, POST_BINARY_WHITELIST, target)
0 commit comments