Subversion Repositories DevTools

Rev

Rev 327 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
283 dpurdie 1
###############################################################################
2
# Copyright (c) ERG Transit Systems. 1996-2009
3
# 
4
# File:         PLATFORM/H400
5
#
6
# Contents:     H440/H450 target
7
#
8
###############################################################################
9
#
10
 
11
H400Init();
12
 
13
sub H400Init
14
{
15
    Toolset( '*', "KeilArmV3.pl", '--Thumb', '--Device=DARMATS' );
16
 
17
    PlatformDefine( "#################################################");
18
    PlatformDefine( "# Building an application using the Keil Arm RV31" );
19
    PlatformDefine( "#" );
20
}
21
 
22
1;
23
 
24
 
25