Brian Daniels / mbed-tools

Fork of mbed-tools by Morpheus

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ds5_5.py Source File

ds5_5.py

00001 """
00002 mbed SDK
00003 Copyright (c) 2011-2013 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 exporters import Exporter
00018 from os.path import basename
00019 
00020 
00021 class DS5_5(Exporter):
00022     NAME = 'DS5'
00023 
00024     TARGETS = [
00025         'LPC1768',
00026         'LPC11U24',
00027         'LPC812',
00028         'UBLOX_C027',
00029         'ARCH_PRO',
00030         'RZ_A1H',
00031     ]
00032 
00033     USING_MICROLIB = [
00034         'LPC812',
00035     ]
00036 
00037     FILE_TYPES = {
00038         'c_sources':'1',
00039         'cpp_sources':'8',
00040         's_sources':'2'
00041     }
00042 
00043     def get_toolchain(self):
00044         return 'uARM' if (self.target in self.USING_MICROLIB) else 'ARM'
00045 
00046     def generate(self):
00047         source_files = []
00048         for r_type, n in DS5_5.FILE_TYPES.iteritems():
00049             for file in getattr(self.resources, r_type):
00050                 source_files.append({
00051                     'name': basename(file), 'type': n, 'path': file
00052                 })
00053 
00054         ctx = {
00055             'name': self.program_name,
00056             'include_paths': self.resources.inc_dirs,
00057             'scatter_file': self.resources.linker_script,
00058             'object_files': self.resources.objects + self.resources.libraries,
00059             'source_files': source_files,
00060             'symbols': self.get_symbols()
00061         }
00062         target = self.target.lower()
00063 
00064         # Project file
00065         self.gen_file('ds5_5_%s.project.tmpl' % target, ctx, '.project')
00066         self.gen_file('ds5_5_%s.cproject.tmpl' % target, ctx, '.cproject')
00067         self.gen_file('ds5_5_%s.launch.tmpl' % target, ctx, 'ds5_%s.launch' % target)