概述
本文基于STM32CubeIDE+ 标准库 +STM32F013CBT6,编写demo点亮LED灯。
1、新建工作空间;
2、新建STM32工程
2.1、选择芯片
2.2、建立空文件
3、添加标准库文件
使用到的标准库问价如下:
3.1、进入工程属性配置
3.2、添加标准库头文件路径
驱动头文件
内核头文件
注意添加成相对路径,否则工作空间所在文件夹移动会导致加载不到头文件:
3.3、添加标准库源文件
驱动源文件
内核源文件
添加成功后:点击Apply and close
添加成功后观察工程文件如下正常:
4、工程配置
4.1 预定义配置,如3.1进入工程属性,进行如下配置。
注意:下图两个预定义为参考KEIL预定义,如若工程存在其他预定义请注意添加
4.2 移植原工程文件头文件(本demo仅点亮LED灯,故仅拷贝了如下两个头文件)
5 整改标准库文件
5.1 删除内核文件中的启动文件,此文件与工程文件中的启动文件冲突
5.2 修改内核文件
5.3 编写main.c,与标准库相同,如下代码参考
#include "stm32f10x_rcc.h"
#include "stm32f10x_gpio.h"
/*JTAG做普通引脚时GPIO最后配置*/
void JTAG_GPIO_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);
GPIO_PinRemapConfig(GPIO_Remap_SWJ_Disable, ENABLE);
// 改变指定管脚的映射 GPIO_Remap_SWJ_Disable SWJ 完全禁用(JTAG+SW-DP)
GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable , ENABLE);
// 改变指定管脚的映射 GPIO_Remap_SWJ_JTAGDisable ,JTAG-DP 禁用 + SW-DP 使能
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3 | GPIO_Pin_4;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 | GPIO_Pin_12 | GPIO_Pin_13;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
}
void RCC_Configuration(void)
{
//== Setup the microcontroller system. Initialize the Embedded Flash Interface,
//== initialize the PLL and update the SystemFrequency variable.
SystemInit();
SysTick_Config(SystemFrequency / 1000);
NVIC_SetPriority(SysTick_IRQn, 0x0);
}
void led_out_gpio_config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO, ENABLE);
//== Configure the GPIO_LED pin
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_15;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO, ENABLE);
//== Configure the GPIO_LED pin
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
#if !defined(__SOFT_FP__) && defined(__ARM_FP)
#warning "FPU is not initialized, but the project is compiling for an FPU. Please initialize the FPU before use."
#endif
int main(void)
{
JTAG_GPIO_Config();
RCC_Configuration(); //== System Clocks Configuration
led_out_gpio_config();
while (1)
{
GPIO_WriteBit(GPIOA, GPIO_Pin_15, Bit_RESET);
GPIO_WriteBit(GPIOB, GPIO_Pin_3, Bit_RESET);
GPIO_WriteBit(GPIOB, GPIO_Pin_4, Bit_RESET);
}
}
5.3编译文件,生成elf与bin文件(.elf文件为调试文件,如需生成hex文件自行百度资料较多)
本博客所建工程资源地址:https://download.csdn.net/download/white_loong/12822177
最后
以上就是标致曲奇为你收集整理的STM32CubeIDE移植标准库的全部内容,希望文章能够帮你解决STM32CubeIDE移植标准库所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复