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 39f8a7d commit fea553cCopy full SHA for fea553c
tools/export/atmelstudio/__init__.py
@@ -17,9 +17,10 @@
17
import uuid
18
from os.path import splitext, basename, dirname
19
20
-from tools.export.exporters import Exporter
+from tools.export.exporters import Exporter, deprecated_exporter
21
22
23
+@deprecated_exporter
24
class AtmelStudio(Exporter):
25
NAME = 'AtmelStudio'
26
TOOLCHAIN = 'GCC_ARM'
@@ -36,6 +37,10 @@ class AtmelStudio(Exporter):
36
37
38
MBED_CONFIG_HEADER_SUPPORTED = True
39
40
+ @classmethod
41
+ def is_target_supported(cls, maybe_supported):
42
+ return maybe_supported in cls.TARGETS
43
+
44
def generate(self):
45
46
source_files = []
0 commit comments