Deprecate Atmel Studio

pull/4742/head
Jimmy Brisson 2017-07-11 11:15:13 -05:00
parent 39f8a7d261
commit fea553c6d5
1 changed files with 6 additions and 1 deletions

View File

@ -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 = []