1.新增STM32-BSP使用教程。

This commit is contained in:
MacRsh
2023-10-16 19:29:30 +08:00
parent ac6fa1e90a
commit 792ee69e5d

View File

@@ -14,7 +14,7 @@
由于ST系列通道对应关系不统一需在CUBEMX中勾选需要使用ADC通道。即可通过ADC设备操作。
![ADC](https://gitee.com/MacRsh/mr-library/bsp/st/document/use_adc.png)
![ADC](https://gitee.com/MacRsh/mr-library/raw/master/bsp/st/document/use_adc.png)
## GPIO外设
@@ -26,7 +26,7 @@
选择需要使用的串口设备为异步模式即可直接通过SERIAL设备操作。
![UART](https://gitee.com/MacRsh/mr-library/bsp/st/document/use_uart.png)
![UART](https://gitee.com/MacRsh/mr-library/raw/master/bsp/st/document/use_uart.png)
禁止在CUBEMX中勾选任何串口中断会出现中断函数重复定义
@@ -34,7 +34,7 @@
选择需要使用的SPI设备为主机/从机模式即可直接通过SPI设备操作。
![SPI](https://gitee.com/MacRsh/mr-library/bsp/st/document/use_spi.png)
![SPI](https://gitee.com/MacRsh/mr-library/raw/master/bsp/st/document/use_spi.png)
禁止在CUBEMX中勾选任何SPI中断会出现中断函数重复定义
@@ -42,7 +42,7 @@
## 导入完成后的keil文件结构
![KEIL](https://gitee.com/MacRsh/mr-library/bsp/st/document/keil.png)
![KEIL](https://gitee.com/MacRsh/mr-library/raw/master/bsp/st/document/keil.png)
----------