<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設計應用 > MDK4.x(uvision 4.x)開發(fā)STM32入門工程的錯誤排除

          MDK4.x(uvision 4.x)開發(fā)STM32入門工程的錯誤排除

          作者: 時間:2016-11-28 來源:網(wǎng)絡 收藏
          一、用stm32f10x_lib.h文件時的問題

          在用uvison 4.x(MDK4.x)建立一個開發(fā)STM32F103的工程:test.uvproj

          本文引用地址:http://www.ex-cimer.com/article/201611/322879.htm

          在工程中加入源程序main.c文件,源代碼內容如下:

          #include "stm32f10x_lib.h"

          int main(void)
          {
          return 0;

          }

          編譯會出現(xiàn)錯誤,使得入門者難以繼續(xù)深入學習STM32。

          錯誤提示的全部信息如下:
          test.axf: Error: L6218E: Undefined symbol SystemInit (referred from startup_stm32f10x_md.o).

          解決辦法如下:
          此問題錯誤提示已經(jīng)十分清楚的告訴你錯在哪里了:Undefined symbol SystemInit ,中文意思就是:SystemInit這個符號沒有定義,隨后的小括號告訴你了,是在startup_stm32f10x_md.o這個文件里面被提及的,這個.o文件在工程里面并沒有,它是一個在編譯的時候根據(jù).c/.s文件生成的。所以我們只需要找到工程里面的.s或者.c即可,這里對應這個名字的就是startup_stm32f10x_md.s了。
          打開文件startup_stm32f10x_md.s,在此文件里面可以找到SystemInit的所在:
          ; Reset handler
          Reset_HandlerPROC
          EXPORTReset_Handler[WEAK]
          IMPORT__main
          IMPORTSystemInit
          LDRR0, =SystemInit
          BLXR0
          LDRR0, =__main
          BXR0
          ENDP
          原來在復位中斷服務函數(shù)里面,調用了SystemInit這個函數(shù),而這個函數(shù)在.s文件里面沒有定義。
          所以解決的辦法有兩個。
          1,在外部(其他任何.c文件里面)定義SystemInit這個函數(shù),哪怕是個空函數(shù)也可以。
          2,把
          IMPORTSystemInit
          LDRR0, =SystemInit
          BLXR0
          這三句話去掉。
          例如,采用2方法,注釋掉3行,改后為:
          ; Reset handler
          Reset_HandlerPROC
          EXPORTReset_Handler[WEAK]
          IMPORT__main
          ;IMPORTSystemInit
          ;LDRR0, =SystemInit
          ;BLXR0
          LDRR0, =__main
          BXR0
          ENDP
          保存后再編譯就不會出現(xiàn)上面的錯誤了。
          至此,此問題解決。

          (http://www.openedv.com/posts/list/3010.htm)

          二、用stm32f10x.h文件時的問題

          在用uvison 4.x(MDK4.x)建立一個開發(fā)STM32F103的工程:test.uvproj

          在工程中加入源程序main.c文件,源代碼內容如下:

          #include "stm32f10x.h"

          int main(void)
          {
          return 0;

          }

          編譯會出現(xiàn)錯誤,使得入門者難以繼續(xù)深入學習STM32。

          錯誤提示的全部信息如下:
          C:Keil_STM32ARMINCSTSTM32F10xstm32f10x.h(80): error:#35: #error directive: "Please select first the target STM32F10x device used in your application (in stm32f10x.h file)"

          解決辦法如下:
          右鍵點擊工程名,選擇第一個options for target ,下面選擇C/C++,在define文本框中輸入:STM32F10X_MD,USE_STDPERIPH_DRIVER即可。MD根據(jù)你選擇的機種更換為LD或HD
          (http://zhidao.baidu.com/link?url=erV1uOi-zVAWbRa6Af9OalKFHAVl1oVSY8CWVgPKqcBXFF_SX6Og4L0NfpD2fSpn2ARXzwdOEneefYD_N2gfaK)
          再編譯,會出現(xiàn)更多錯誤,例如:
          error:#256: invalid redeclaration of type name "s32" (declared at line 470 of "C:Keil_STM32ARMINCSTSTM32F10xstm32f10x.h")
          #256: invalid redeclaration of type name "sc32" (declared at line 474 of "C:Keil_STM32ARMINCSTSTM32F10xstm32f10x.h")
          ......
          error:#101: "RESET" has already been declared in the current scope
          error:#101: "SET" has already been declared in the current scope
          ......
          error:#256: invalid redeclaration of type name "ErrorStatus" (declared at line 507 of "C:Keil_STM32ARMINCSTSTM32F10xstm32f10x.h")
          warning:#47-D: incompatible redefinition of macro "HSE_Value" (declared at line 511 of "C:Keil_STM32ARMINCSTSTM32F10xstm32f10x.h")
          解決辦法:
          打開stm32f10x_conf.h文件,將第21行的“#include "stm32f10x_type.h"”注釋掉,再保存stm32f10x_conf.h文件,重新編譯即可。



          評論


          技術專區(qū)

          關閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();