初始教程
最小系统板点灯
方式一:使用ST-LINK烧录
方式二:使用usb转ttl烧录
这里使用方式二
- usb转ttl烧录
- ttl的tx接板子A10 ttl的rx接板子A9,给板子供电3.3v,ttl 3.3v 接vcc ,ttl gnd接板子gnd
- 板子复位键下面的 BOOT1 放置最右边两个针脚 0,BOOT0 放置最左边两个针脚 1
- 下载 并安装 Keil uVision5 把c代码生成.hex文件
选择 stm32f103c6 ,更新慢的话到官网下载
https://www.keil.com/dd2/pack/#!#eula-container
选择这个
代码
int main()
{
*(unsigned int *)0x40021018 |=(1<<4);
*(unsigned int *)0x40011004 &=~(1111<<(4*5));
*(unsigned int *)0x40011004 |=(1<<(4*5));
*(unsigned int *)0x4001100C &=~(1<<13);
}
9.使用FlyMcu软件烧录到板子