소스 검색

fixed KEIL project of Fujitsu FM3 Easy Kit compiling error
avoid to include C:\Keil\ARM\RV31\INC\core_cm3.h

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1299 bbd45198-f89e-11dd-88c7-29a3b14d5316

dzzxzz 14 년 전
부모
커밋
6221cdfec6
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      bsp/fm3/board.c
  2. 2 2
      libcpu/arm/fm3/cpuport.c

+ 2 - 2
bsp/fm3/board.c

@@ -16,8 +16,8 @@
 #include <rtthread.h>
 
 #include "board.h"
-#include <mb9bf506r.h>
-#include <core_cm3.h>
+#include "mb9bf506r.h"
+#include "core_cm3.h"
 
 extern const uint32_t SystemFrequency;
 

+ 2 - 2
libcpu/arm/fm3/cpuport.c

@@ -15,8 +15,8 @@
 #include <rthw.h>
 #include <rtthread.h>
 
-#include <mb9bf506r.h>
-#include <core_cm3.h>
+#include "mb9bf506r.h"
+#include "core_cm3.h"
 
 /* switch flag on interrupt and thread pointer to save switch record */
 rt_uint32_t rt_interrupt_from_thread, rt_interrupt_to_thread;