Subversion Repositories DevTools

Rev

Rev 3560 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3560 Rev 3563
Line 1... Line 1...
1
########################################################################
1
########################################################################
2
# Copyright (C) 1998-2013 Vix Technology, All rights reserved
2
# Copyright (C) 1998-2013 Vix Technology, All rights reserved
3
#
3
#
4
# Module name   : MSP430G2553
4
# Module name   : VSDEVRC
5
# Module type   : JATS PLATFORM Definition
5
# Module type   : JATS PLATFORM Definition
6
# Compiler(s)   : Perl
6
# Compiler(s)   : Perl
7
# Environment(s): jats
7
# Environment(s): jats
8
#
8
#
9
# Description   : Support for the Texas Instruments MSP430 from their CC Studio
9
# Description   : Support for the Texas Instruments MSP430 from their CC Studio
10
#                 Support for the MSP430G2553 processor
10
#                 Support for the VSDEVRC processor
11
#
11
#
12
#......................................................................#
12
#......................................................................#
13
 
13
 
14
MSP430G2553_Init();
14
VSDEVRC_Init();
15
 
15
 
16
###############################################################################
16
###############################################################################
17
#
17
#
18
#   This function is named after the invoking platform and the file that
18
#   This function is named after the invoking platform and the file that
19
#   this function is in. The two are bound.
19
#   this function is in. The two are bound.
Line 29... Line 29...
29
#
29
#
30
#   Note: Platform arguments are passed through in the Platform()
30
#   Note: Platform arguments are passed through in the Platform()
31
#         statement within a makefile.pl
31
#         statement within a makefile.pl
32
#
32
#
33
#
33
#
34
sub MSP430G2553_Init
34
sub VSDEVRC_Init
35
{
35
{
36
    my( @args ) = @ScmPlatformArgs;            # Platform arguments
36
    my( @args ) = @ScmPlatformArgs;            # Platform arguments
37
 
37
 
38
#.. Parse arguments
38
#.. Parse arguments
39
#
39
#
40
    Debug( "MSP430G2553(@args)\n" );
40
    Debug( "VSDEVRC(@args)\n" );
41
 
41
 
42
    foreach $_ ( @args ) {
42
    foreach $_ ( @args ) {
43
        Message( "MSP430G2553: unknown option $_ -- ignored\n" );
43
        Message( "VSDEVRC: unknown option $_ -- ignored\n" );
44
    }
44
    }
45
 
45
 
46
#... Toolset
46
#... Toolset
47
#
47
#
48
    Toolset( '*', 'msp430.pl', '--Version=4.3.3', '--itp', '--procFlags=__MSP430G2553__' );
48
    Toolset( '*', 'msp430.pl', '--Version=4.3.3', '--itp', '--procFlags=__MSP430G2553__' );