update project files.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1604 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong 2011-07-04 06:22:56 +00:00
parent 8381e13d1c
commit cbf5ef8fa8
5 changed files with 3761 additions and 3 deletions

2028
bsp/lpc176x/project.ewp Normal file

File diff suppressed because it is too large Load Diff

10
bsp/lpc176x/project.eww Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<workspace>
<project>
<path>$WS_DIR$\project.ewp</path>
</project>
<batchBuild/>
</workspace>

View File

@ -9,6 +9,9 @@ if CROSS_TOOL == 'gcc':
elif CROSS_TOOL == 'keil': elif CROSS_TOOL == 'keil':
PLATFORM = 'armcc' PLATFORM = 'armcc'
EXEC_PATH = 'E:/Keil' EXEC_PATH = 'E:/Keil'
elif CROSS_TOOL == 'iar':
PLATFORM = 'iar'
EXEC_PATH = 'E:/Program Files/IAR Systems/Embedded Workbench 6.0/arm/bin'
BUILD = 'debug' BUILD = 'debug'
if PLATFORM == 'gcc': if PLATFORM == 'gcc':

View File

@ -129,10 +129,8 @@ void rtthread_startup(void)
int main(void) int main(void)
{ {
rt_uint32_t UNUSED level;
/* disable interrupt first */ /* disable interrupt first */
level = rt_hw_interrupt_disable(); rt_hw_interrupt_disable();
/* init system setting */ /* init system setting */
SystemInit(); SystemInit();

1719
bsp/lpc176x/template.ewp Normal file

File diff suppressed because it is too large Load Diff