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.
Fork of OmniWheels by
__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 'GR_LYCHEE', 00034 ] 00035 00036 USING_MICROLIB = [ 00037 'LPC812', 00038 ] 00039 00040 FILE_TYPES = { 00041 'c_sources':'1', 00042 'cpp_sources':'8', 00043 's_sources':'2' 00044 } 00045 00046 TOOLCHAIN = "ARM" 00047 00048 def get_toolchain(self): 00049 return 'uARM' if (self.target in self.USING_MICROLIB) else 'ARM' 00050 00051 def generate(self): 00052 source_files = [] 00053 for r_type, n in DS5_5.FILE_TYPES.items(): 00054 for file in getattr(self.resources, r_type): 00055 source_files.append({ 00056 'name': basename(file), 'type': n, 'path': file 00057 }) 00058 00059 ctx = { 00060 'name': self.project_name, 00061 'include_paths': self.resources.inc_dirs, 00062 'scatter_file': self.resources.linker_script, 00063 'object_files': self.resources.objects + self.resources.libraries, 00064 'source_files': source_files, 00065 'symbols': self.toolchain.get_symbols() 00066 } 00067 target = self.target.lower() 00068 00069 # Project file 00070 self.gen_file('ds5_5/%s.project.tmpl' % target, ctx, '.project') 00071 self.gen_file('ds5_5/%s.cproject.tmpl' % target, ctx, '.cproject') 00072 self.gen_file('ds5_5/%s.launch.tmpl' % target, ctx, 'ds5_%s.launch' % target)
Generated on Fri Jul 22 2022 04:53:42 by
 1.7.2
 1.7.2 
    