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.
__init__.py
00001 """ 00002 mbed SDK 00003 Copyright (c) 2011-2016 ARM Limited 00004 00005 Licensed under the Apache License, Version 2.0 (the "License"); 00006 you may not use this file except in compliance with the License. 00007 You may obtain a copy of the License at 00008 00009 http://www.apache.org/licenses/LICENSE-2.0 00010 00011 Unless required by applicable law or agreed to in writing, software 00012 distributed under the License is distributed on an "AS IS" BASIS, 00013 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 See the License for the specific language governing permissions and 00015 limitations under the License. 00016 """ 00017 from os.path import basename 00018 00019 from tools.export.exporters import Exporter 00020 00021 00022 class DS5_5(Exporter ): 00023 NAME = 'DS5' 00024 00025 TARGETS = [ 00026 'LPC1768', 00027 'LPC11U24', 00028 'LPC812', 00029 'UBLOX_C027', 00030 'ARCH_PRO', 00031 'RZ_A1H', 00032 'VK_RZ_A1H', 00033 ] 00034 00035 USING_MICROLIB = [ 00036 'LPC812', 00037 ] 00038 00039 FILE_TYPES = { 00040 'c_sources':'1', 00041 'cpp_sources':'8', 00042 's_sources':'2' 00043 } 00044 00045 TOOLCHAIN = "ARM" 00046 00047 def get_toolchain(self): 00048 return 'uARM' if (self.target in self.USING_MICROLIB) else 'ARM' 00049 00050 def generate(self): 00051 source_files = [] 00052 for r_type, n in DS5_5.FILE_TYPES.iteritems(): 00053 for file in getattr(self.resources, r_type): 00054 source_files.append({ 00055 'name': basename(file), 'type': n, 'path': file 00056 }) 00057 00058 ctx = { 00059 'name': self.project_name, 00060 'include_paths': self.resources.inc_dirs, 00061 'scatter_file': self.resources.linker_script, 00062 'object_files': self.resources.objects + self.resources.libraries, 00063 'source_files': source_files, 00064 'symbols': self.toolchain.get_symbols() 00065 } 00066 target = self.target.lower() 00067 00068 # Project file 00069 self.gen_file('ds5_5/%s.project.tmpl' % target, ctx, '.project') 00070 self.gen_file('ds5_5/%s.cproject.tmpl' % target, ctx, '.cproject') 00071 self.gen_file('ds5_5/%s.launch.tmpl' % target, ctx, 'ds5_%s.launch' % target)
Generated on Thu Jul 14 2022 14:36:11 by
