arduino ide编写stm32_IDE开发工具

(1) 2024-09-18 13:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
arduino ide编写stm32_IDE开发工具,希望能够帮助你!!!。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第1张

STM32概述“Blue Pill”

如果你看看这个2美元的微控制器,您看到的第一件事就是它的跳线引脚,用于使用默认的USART引导加载程序。板上还有一个微型USB端口,但遗憾的是它不能用于编程,因为它没有相关的引导加载程序。

与官方的Arduino板相比,这些板非常便宜,而且硬件是开源的。除了微控制器外,该板还可以容纳两个晶体振荡器 - 一个8MHz晶体和一个32KHz晶体 - 可用于驱动内部RTC(实时时钟)。因此,MCU可以在深度睡眠模式下工作,非常适合电池供电的应用。

要对该板进行编程,我们需要使用简单的USB转UART转换器,然后我们就可以编程了它直接通过USB从计算机

STM32引脚排列

必需材料

STM32 F103C8T6

USB转UART转换器(FTDI)

跳线

面包板

Arduino IDE

接线项目

根据下面Fritzing图中显示的连接连接电路板,并将它们与计算机连接。

Fritzing diagram

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第2张

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第3张

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第4张

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第5张

使用跳线到位的构建设置。

如下图所示连接跳线,将电板设置为DFU模式(设备固件升级) )然后按“重置”按钮。

在Arduino IDE上设置STM32

打开Arduino IDE并选择首选项。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第6张

单击“其他Board URL”选项并在逗号后面添加此URL:

http://dan.drown.org/stm32duino/package_STM32duino_index.json

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第7张

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第8张

然后单击工具→板→板管理器。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第9张

执行上述步骤后,您可以在电路板列表中看到STM32 。现在选择STM32F103C。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第10张

因为我们使用UART模块上传代码,所以选择Upload Method as Serial。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第11张

从示例中选择Blink sketch。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第12张

用“PC13”更改LED引脚编号,如图所示下面的截图。这是电路板中内置LED的名称。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第13张

项目源代码

void setup() {

// change pin PC13

pinMode(PC13, OUTPUT);

}

//infinite loop

void loop() {

digitalWrite(PC13, HIGH); // turn the LED on (HIGH is the voltage level)

delay(1000); // wait for a second

digitalWrite(PC13, LOW); // turn the LED off by making the voltage LOW

delay(1000); // wait for a second

}

将代码上传到Arduino IDE

现在上传代码。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第14张

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第15张

成功上传!

结论 的

如果程序已成功上传,您应该会看到绿色LED以1秒的间隔闪烁。您也可以使用此程序增加或减少LED灯的延迟。

上传程序后,您应该将跳线更改回正常模式,以便下次启动电路板时,上传的程序将自动开始执行。

arduino ide编写stm32_IDE开发工具_https://bianchenghao6.com/blog__第16张

完整的构建。

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复