Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed-TFT-example-NCS36510 mbed-Accelerometer-example-NCS36510 mbed-Accelerometer-example-NCS36510
Diff: tools/export/atmelstudio.py
- Revision:
- 0:098463de4c5d
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/export/atmelstudio.py Wed Jan 25 20:34:15 2017 +0000
@@ -0,0 +1,79 @@
+"""
+mbed SDK
+Copyright (c) 2011-2016 ARM Limited
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+"""
+import uuid
+from exporters import Exporter
+from os.path import splitext, basename, dirname
+
+
+class AtmelStudio(Exporter):
+ NAME = 'AtmelStudio'
+ TOOLCHAIN = 'GCC_ARM'
+
+ TARGETS = [
+ 'SAMD21J18A',
+ 'SAMR21G18A',
+ 'SAMD21G18A',
+ 'SAML21J18A',
+ 'SAMG55J19',
+ ]
+
+ DOT_IN_RELATIVE_PATH = True
+
+ MBED_CONFIG_HEADER_SUPPORTED = True
+
+ def generate(self):
+
+ source_files = []
+ dirs = []
+ for r_type in ['s_sources', 'c_sources', 'cpp_sources']:
+ r = getattr(self.resources, r_type)
+ if r:
+ for source in r:
+ source_files.append(source[2:])
+ dirs.append(dirname(source[2:]))
+
+ source_folders = []
+ for e in dirs:
+ if e and e not in source_folders:
+ source_folders.append(e)
+
+ libraries = []
+ for lib in self.resources.libraries:
+ l, _ = splitext(basename(lib))
+ libraries.append(l[3:])
+
+ solution_uuid = '{' + str(uuid.uuid4()) + '}'
+ project_uuid = '{' + str(uuid.uuid4()) + '}'
+
+ ctx = {
+ 'target': self.target,
+ 'name': self.project_name,
+ 'source_files': source_files,
+ 'source_folders': source_folders,
+ 'object_files': self.resources.objects,
+ 'include_paths': self.resources.inc_dirs,
+ 'library_paths': self.resources.lib_dirs,
+ 'linker_script': self.resources.linker_script,
+ 'libraries': libraries,
+ 'symbols': self.toolchain.get_symbols(),
+ 'solution_uuid': solution_uuid.upper(),
+ 'project_uuid': project_uuid.upper()
+ }
+ ctx.update(self.flags)
+ target = self.target.lower()
+ self.gen_file('atmelstudio6_2.atsln.tmpl', ctx, '%s.atsln' % self.project_name)
+ self.gen_file('atmelstudio6_2.cppproj.tmpl', ctx, '%s.cppproj' % self.project_name)