Lee Kai Xuan / mbed-os

Fork of mbed-os by erkin yucel

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-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 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     TOOLCHAIN = "ARM"
00044 
00045     def get_toolchain(self):
00046         return 'uARM' if (self.target in self.USING_MICROLIB) else 'ARM'
00047 
00048     def generate(self):
00049         source_files = []
00050         for r_type, n in DS5_5.FILE_TYPES.iteritems():
00051             for file in getattr(self.resources, r_type):
00052                 source_files.append({
00053                     'name': basename(file), 'type': n, 'path': file
00054                 })
00055 
00056         ctx = {
00057             'name': self.project_name,
00058             'include_paths': self.resources.inc_dirs,
00059             'scatter_file': self.resources.linker_script,
00060             'object_files': self.resources.objects + self.resources.libraries,
00061             'source_files': source_files,
00062             'symbols': self.toolchain.get_symbols()
00063         }
00064         target = self.target.lower()
00065 
00066         # Project file
00067         self.gen_file('ds5_5_%s.project.tmpl' % target, ctx, '.project')
00068         self.gen_file('ds5_5_%s.cproject.tmpl' % target, ctx, '.cproject')
00069         self.gen_file('ds5_5_%s.launch.tmpl' % target, ctx, 'ds5_%s.launch' % target)