mirror of https://github.com/ARMmbed/mbed-os.git
Deprecate Atmel Studio
parent
39f8a7d261
commit
fea553c6d5
|
@ -17,9 +17,10 @@ limitations under the License.
|
|||
import uuid
|
||||
from os.path import splitext, basename, dirname
|
||||
|
||||
from tools.export.exporters import Exporter
|
||||
from tools.export.exporters import Exporter, deprecated_exporter
|
||||
|
||||
|
||||
@deprecated_exporter
|
||||
class AtmelStudio(Exporter):
|
||||
NAME = 'AtmelStudio'
|
||||
TOOLCHAIN = 'GCC_ARM'
|
||||
|
@ -36,6 +37,10 @@ class AtmelStudio(Exporter):
|
|||
|
||||
MBED_CONFIG_HEADER_SUPPORTED = True
|
||||
|
||||
@classmethod
|
||||
def is_target_supported(cls, maybe_supported):
|
||||
return maybe_supported in cls.TARGETS
|
||||
|
||||
def generate(self):
|
||||
|
||||
source_files = []
|
||||
|
|
Loading…
Reference in New Issue