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
|
import uuid
|
||||||
from os.path import splitext, basename, dirname
|
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):
|
class AtmelStudio(Exporter):
|
||||||
NAME = 'AtmelStudio'
|
NAME = 'AtmelStudio'
|
||||||
TOOLCHAIN = 'GCC_ARM'
|
TOOLCHAIN = 'GCC_ARM'
|
||||||
|
@ -36,6 +37,10 @@ class AtmelStudio(Exporter):
|
||||||
|
|
||||||
MBED_CONFIG_HEADER_SUPPORTED = True
|
MBED_CONFIG_HEADER_SUPPORTED = True
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def is_target_supported(cls, maybe_supported):
|
||||||
|
return maybe_supported in cls.TARGETS
|
||||||
|
|
||||||
def generate(self):
|
def generate(self):
|
||||||
|
|
||||||
source_files = []
|
source_files = []
|
||||||
|
|
Loading…
Reference in New Issue