在这里插入图片描述
2.在工程里新建一个WokePace文件用来放其他模块文件
在这里插入图片描述
3.去别的工程直接把想要的模块复制到该文件夹下,每个模块都有一个main.c和main.h,也可以自己写,模块化代码有助于代码的简洁和可移植性。
在这里插入图片描述
4.打开工程,按如下提示添加头文件的路径
在这里插入图片描述
5.按如下提示将.C文件添加进来。
在这里插入图片描述
6.打开模块的.C文件,将下面两句复制粘贴到main.c中
在这里插入图片描述
7.放在如下位置,在while循环中编写代码,编译即可。
在这里插入图片描述
8.编译无错后,要进行烧录代码。按如下提示选择下载器,如下用了ST-Link下载器,选择完后点击Setting——
在这里插入图片描述
9.在Unit显示如下“ST-LINK/V2”,并将port选为SW模式。
在这里插入图片描述
10.打开Utilities,按如下 *** 作执行。最后点击Sttings
在这里插入图片描述
11. 点击Sttings,出现以下画面,将Reset and Run勾选上,每次烧录时会重启复位。设置完成后,就可以进行烧录代码。
在这里插入图片描述
固件库么?1。打开stm32f10x.conf 把需要的#include 前后的注释去掉
2。在你的文件中添加#include "stm32f10x.h"
我当初也绕到这了。
#include "stm32f10x_conf.h"这个文件里已经把所有的给包含进去了,
#include "stm32f10x_adc.h"
//#include "stm32f10x_bkp.h"
//#include "stm32f10x_can.h"
//#include "stm32f10x_cec.h"
//#include "stm32f10x_crc.h"
//#include "stm32f10x_dac.h"
//#include "stm32f10x_dbgmcu.h"
#include "stm32f10x_dma.h"
//#include "stm32f10x_exti.h"
//#include "stm32f10x_flash.h"
#include "stm32f10x_fsmc.h"
#include "stm32f10x_gpio.h"
//#include "stm32f10x_i2c.h"
//#include "stm32f10x_iwdg.h"
//#include "stm32f10x_pwr.h"
#include "stm32f10x_rcc.h"
//#include "stm32f10x_rtc.h"
#include "stm32f10x_sdio.h"
//#include "stm32f10x_spi.h"
#include "stm32f10x_tim.h"
#include "stm32f10x_usart.h"
//#include "stm32f10x_wwdg.h"、
你需要把那些不需要的给注释掉。。。。不行的话欢迎反馈交流
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)