色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設計應用 > stm32編譯出問題解決

          stm32編譯出問題解決

          作者: 時間:2016-11-27 來源:網絡 收藏
          .FWlibincstm32f10x_conf.h(33): warning:#14-D: extra text after expected end of preprocessing directive額外的文本在在預處理命令后面出現

          #include "stm32f10x_dma.h" */出問題的地方就是這個 “*/

          本文引用地址:http://cafeforensic.com/article/201611/322420.htm

          仿照原子自己建立工程的時候出現的問題修改:

          問題及修改:

          1)..SYSTEMdelaydelay.c(27): error:#20: identifier "SysTick_CLKSource_HCLK_Div8" is undefined

          解決方法:在delay.c中添加“#include"misc.h"”

          2)..SYSTEMsyssys.c(18): error:#20: identifier "NVIC_PriorityGroup_2" is undefined

          解決方法:在sys.c中添加“#include"misc.h"”

          3). ..SYSTEMusartusart.c(75): error:#20: identifier "GPIO_InitTypeDef" is undefined

          解決方法:在usart.c中添加“#include”stm32f10x_gpio.h””

          4)..SYSTEMusartusart.c(77): error:#20: identifier "USART_InitTypeDef" is undefined

          解決方法:在usart.c中添加“#include"stm32f10x_usart.h"”

          5)..SYSTEMusartusart.c(80): error:#20: identifier "NVIC_InitTypeDef" is undefined

          解決方法:在usart.c中添加“#include"misc.h"”

          6)..SYSTEMusartusart.c(82): warning:#223-D: function "RCC_APB2PeriphClockCmd" declared implicitly

          解決方法:在usart.c中添加“#include"stm32f10x_rcc.h"”

          7)..HARDWARELEDled.c(22): error:#20: identifier "GPIO_InitTypeDef" is undefined

          解決方法:在led.c中添加“#include"stm32f10x_gpio.h"”

          8)..HARDWARELEDled.c(25): error:#20: identifier "RCC_APB2Periph_GPIOA" is undefined

          解決方法:在led.c中添加“#include"stm32f10x_rcc.h"”

          20150318

          ..SysTick_LED.axf: Error: L6218E: Undefined symbol uart_init (referred from main.o).

          這個錯誤說的是在main函數中引用了uart_init()函數,但是這個函數沒有被定義。

          其實這個函數是在uart.c中定義的并且在uart.h中做了聲明,uart.h也被包含進了main函數了。

          出問題的原因是這樣的:uart.c中uart_init()函數是定義在預編譯命令對

          #if EN_USART1_RX

          ...............

          #endif

          中的。而#define EN_USART1_RX 0所以,這對預編譯命令不被編譯,即uart_init()沒有被定義。將

          #define EN_USART1_RX 0改成#define EN_USART1_RX1就好了。

          20150321

          編譯沒有錯誤,但是串口無法向串口中斷打印信息,原因是串口輸出要用到相應的GPIO,程序中忘了使能這些IO的時鐘,使能一下就好了。



          關鍵詞: stm32編譯問題解

          評論


          技術專區(qū)

          關閉