我是 ARM 处理器的新手,我最近购买了 STM32F4 Discovery Kit。您是否建议我开始使用 CooCoz 或其他 IDE 进行编程?对不起英语,干得好。
问问题
7458 次
1 回答
6
是的,它很容易使用。
下载ST-LINK 实用程序、CoIDE和 gcc-arm-embedded工具链。
安装并配置 CooCox。在“Project -> Select Toolchain Path”中选择带有工具链的目录,默认为“C:\Program Files\GNU Tools ARM Embedded\4.8 2013q4\bin”
创建新项目,选择 stm32f407vg 芯片,然后从存储库中选择 M4 CMSIS Core、CMSIS BOOT、RCC、GPIO。所有需要的文件都将添加到项目树中。
将代码添加到 main.c 文件
//basic headers
#include "stm32f4xx.h"
#include "stm32f4xx_gpio.h"
#include "stm32f4xx_rcc.h"
// delay function
void Soft_Delay(volatile uint32_t number)
{
while(number--);
}
int main(void)
{
//Peripherial clock setup
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOD, ENABLE);
//Port setup
GPIO_InitTypeDef ledinit;
ledinit.GPIO_Mode = GPIO_Mode_OUT;
ledinit.GPIO_OType = GPIO_OType_PP;
ledinit.GPIO_PuPd = GPIO_PuPd_NOPULL;
ledinit.GPIO_Speed = GPIO_Speed_2MHz;
ledinit.GPIO_Pin = GPIO_Pin_15; //
GPIO_Init(GPIOD, &ledinit);
while(1)
{
// Led On
GPIO_SetBits(GPIOD, GPIO_Pin_15);
// Pause
Soft_Delay(0x000FFFFF);
// Led Off
GPIO_ResetBits(GPIOD, GPIO_Pin_15);
// PAuse
Soft_Delay(0x000FFFFF);
}
}
选择“Project -> Rebuild”和“Flash -> Program Download”,蓝色LED开始闪烁。
于 2014-01-21T20:18:57.107 回答