diff --git a/bsp/stm32/docs/How to make a STM32 BSP for RT-Thread.md b/bsp/stm32/docs/How to make a STM32 BSP for RT-Thread.md index f19d86f436..2b677e7dfb 100644 --- a/bsp/stm32/docs/How to make a STM32 BSP for RT-Thread.md +++ b/bsp/stm32/docs/How to make a STM32 BSP for RT-Thread.md @@ -14,7 +14,7 @@ The main features of the new STM32 BSP framework are as follows: The BSP frame structure is shown in the figure below: -![BSP 框架图](./figures/frame.png) +![BSP frame structure](./figures_en/frame.png) Each BSP of the STM32 series consists of three parts, namely the general library, the BSP template and the specific development board BSP. The following table uses the F1 series BSP as an example to introduce these three parts: @@ -44,11 +44,11 @@ The first step in making a new BSP is to copy a BSP template of the same series The folder structure of the F1 series BSP template used in this example is as follows: -![F1 系列 BSP 模板文件夹内容](figures/bsp_template_dir.png) +![F1 series BSP template folder contents](figures_en/bsp_template_dir.png) Copy the `stm32f10x` folder under the template folder and change the name of the folder to `stm32f103-blue-pill`, as shown in the following figure: -![复制通用模板](./figures/copy.png) +![Copying common templates](./figures_en/copy.png) Modify the configuration file in the board folder. The modified content is shown in the following table: @@ -64,7 +64,7 @@ Modify the configuration file in the board folder. The modified content is shown Create a CubeMX project based on the target chip. The default CubeMX project is in the **CubeMX_Config** folder, double-click to open the `CubeMX_Config.ioc` project, as shown in the figure below: -![open_cubemx](figures/open_cubemx.png) +![open_cubemx](figures_en/open_cubemx.png) Change the chip model to STM32F103C8Tx in the CubeMX project. @@ -74,15 +74,15 @@ Configure the system clock, peripheral pins, etc. The steps are shown in the fig 1. Turn on the external clock, set the download mode, and turn on the serial peripherals (note that only the pins of the serial peripherals need to be selected, no other parameters need to be configured): - ![配置芯片引脚](./figures/CubeMX_1.png) + ![Configure chip pins](./figures_en/CubeMX_1.png) 2. Configure the system clock: - ![配置系统时钟](./figures/CubeMX_2.png) + ![Configuring the System Clock](./figures_en/CubeMX_2.png) 3. Set the project name and regenerate the CubeMX project at a specified address: - ![生成对应的配置代码](./figures/CubeMX_4.png) + ![Generate the corresponding configuration code](./figures_en/CubeMX_4.png) Note: When generating the code, do not check the following options (ie: Do not let it generate a peripheral initialization as a pair of .c/.h files per perioheral.) @@ -90,17 +90,17 @@ Configure the system clock, peripheral pins, etc. The steps are shown in the fig 4. The final project directory structure generated by CubeMX is shown in the figure below: - ![CubeMX 图7](./figures/CubeMX_5.png) + ![CubeMX 7](./figures_en/CubeMX_5.png) #### 3.2.2 Copy initialization function The function `SystemClock_Config()` is placed in the **board.c** file, which is responsible for initializing the system clock. When using the CubeMX tool to reconfigure the system clock, this function needs to be updated. This function is generated by the CubeMX tool and is placed in the file `board/CubeMX_Config/Src/main.c` by default. However, this file does not include in our project, so we need to copy this function from main.c to the board.c file. In the entire BSP making process, this function is the only function to be copied. The content of this function is as follows: -![board_1](./figures/board_1.png) +![board_1](./figures_en/board_1.png) The relevant parameters of FLASH and RAM are configured in the **board.h** file. What needs to be modified in this file is the parameters controlled by the two macros `STM32_FLASH_SIZE` and `STM32_SRAM_SIZE`. The flash size of the STM32F103C8Tx chip used in the BSP produced this time is 64k, and the size of the ram is 20k, so the file is modified as follows: -![修改 board.h](./figures/board_h.png) +![Modified board.h](./figures_en/board_h.png) #### 3.2.3 Heap memory configuration @@ -108,7 +108,7 @@ Normally, a part of the memory space in the system RAM will be used as heap memo In some series of chips, the chip RAM may be distributed in multiple discrete memory areas. At this time, the location of the heap memory can be in the same continuous memory area as the system memory, or it can be stored in a separate memory area. For example, on the L4 series of chips, the heap memory can be configured in a 96k memory space with a starting address of `0x20000000`, and the 32k memory space starting from `0x10000000` can be used as the system running memory. -![heap_config](figures/heap_config.png) +![heap_config](figures_en/heap_config.png) ### 3.3 Modify Kconfig configuration @@ -126,7 +126,7 @@ The modification of chip model and series is shown in the following table: Regarding the peripheral support options on the BSP, a BSP submitted for the first time only needs to support the GPIO driver and the serial port driver, which means only these two driver configuration items need to be retained in the configuration options, as shown in the following figure: -![修改 Kconfig](./figures/Kconfig.png) +![Modified Kconfig](./figures_en/Kconfig.png) ### 3.4 Modify project building related files @@ -134,19 +134,19 @@ Regarding the peripheral support options on the BSP, a BSP submitted for the fir **linker_scripts** The link file is as shown in the figure below: -![需要修改的链接脚本](./figures/linker_scripts.png) +![Link scripts that need to be modified](./figures_en/linker_scripts.png) The following uses the link script link.sct used by MDK as an example to demonstrate how to modify the link script: -![linkscripts_change](figures/linkscripts_change.png) +![linkscripts_change](figures_en/linkscripts_change.png) The chip used to make the BSP this time is STM32F103RB, and the FLASH is 128k, so modify the parameters of LR_IROM1 and ER_IROM1 to 0x00020000. The size of RAM is 20k, so modify the parameter of RW_IRAM1 to 0x00005000. Such a modification method is sufficient for general applications. If there are special requirements in the future, you need to modify it as required according to the syntax of the link script. When modifying the link script, you can refer to the [**3.2.3 Heap memory configuration**](# 3.2.3 Heap memory configuration) chapter to determine the BSP memory allocation. The other two link script files are link.icf used by IAR and link.lds used by the GCC compiler. The modification method is similar, as shown in the following figure: -![link_icf](figures/link_icf.png) +![link_icf](figures_en/link_icf.png) -![link_lds](figures/link_lds.png) +![link_lds](figures_en/link_lds.png) #### 3.4.2 Modify the build script @@ -154,7 +154,7 @@ The **SConscript** script determines the files to be added during the generation In this step, you need to modify the chip model and the address of the chip startup file. The modification content is shown in the figure below: -![修改启动文件和芯片型号](./figures/SConscript.png) +![Modify the startup file and chip model](./figures_en/SConscript.png) Note: If you cannot find the .s file of the corresponding series in the folder, it may be that multiple series of chips reuse the same startup file. At this time, you can generate the target chip project in CubeMX to see which startup file is used. Then modify the startup file name. @@ -162,15 +162,15 @@ Note: If you cannot find the .s file of the corresponding series in the folder, The **template** file is a template file for generating the MDK/IAR project. By modifying the file, you can set the chip model used in the project and the download method. The project template file of MDK4/MDK5/IAR, as shown in the figure below: -![MDK/IAR 工程模板](./figures/template_1.png) +![MDK/IAR engineering template](./figures_en/template_1.png) The following takes the modification of the MDK5 template as an example to introduce how to modify the template configuration: -![选择芯片型号](./figures/template_2.png) +![Select the chip model](./figures_en/template_2.png) Modify the program download method: -![配置下载方式](./figures/template_3.png) +![Configuring the Download Mode](./figures_en/template_3.png) ### 3.5 Regenerate the project @@ -180,17 +180,17 @@ Env tool is required to regenerate the project. Enter the command menuconfig in the Env interface to configure the project and generate a new rtconfig.h file. As shown below: -![输入menuconfig进入配置界面](./figures/menuconfig_1.png) +![Enter menuconfig to go to the configuration screen](./figures_en/menuconfig_1.png) #### 3.5.2 Rebuild the MDK/IAR project The following takes regenerating the MDK project as an example to introduce how to regenerate the BSP project. Use the Env tool to enter the command `scons --target=mdk5` to regenerate the project, as shown in the following figure: -![重新生成 BSP 工程](./figures/menuconfig_3.png) +![Regenerate the BSP project](./figures_en/menuconfig_3.png) Rebuild the project successfully: -![重新生成 BSP 工程](./figures/menuconfig_4.png) +![Regenerate the BSP project](./figures_en/menuconfig_4.png) At this point, the new BSP can be used. Next, we can use the commands `scons --target=mdk4` and `scons --target=iar` respectively to update the MDK4 and IAR projects so that the BSP becomes a complete BSP that can be submitted to GitHub (Making MDK4 project is optional). @@ -243,3 +243,4 @@ The specifications of making STM32 BSP are mainly divided into three aspects: en - When submitting libraries of different series of STM32, please refer to the HAL libraries of f1/f4 series and delete redundant library files. - Compile and test the BSP before submission to ensure that it compiles properly under different compilers. - Perform functional tests on the BSP before submission to ensure that the BSP meets the requirements in the engineering configuration chapter before submission. + diff --git a/bsp/stm32/docs/figures_en/CubeMX_1.png b/bsp/stm32/docs/figures_en/CubeMX_1.png new file mode 100644 index 0000000000..df1501aa3d Binary files /dev/null and b/bsp/stm32/docs/figures_en/CubeMX_1.png differ diff --git a/bsp/stm32/docs/figures_en/CubeMX_2.png b/bsp/stm32/docs/figures_en/CubeMX_2.png new file mode 100644 index 0000000000..f4d55c961d Binary files /dev/null and b/bsp/stm32/docs/figures_en/CubeMX_2.png differ diff --git a/bsp/stm32/docs/figures_en/CubeMX_3.png b/bsp/stm32/docs/figures_en/CubeMX_3.png new file mode 100644 index 0000000000..4b5fc8870a Binary files /dev/null and b/bsp/stm32/docs/figures_en/CubeMX_3.png differ diff --git a/bsp/stm32/docs/figures_en/CubeMX_4.png b/bsp/stm32/docs/figures_en/CubeMX_4.png new file mode 100644 index 0000000000..de0c6188cd Binary files /dev/null and b/bsp/stm32/docs/figures_en/CubeMX_4.png differ diff --git a/bsp/stm32/docs/figures_en/CubeMX_5.png b/bsp/stm32/docs/figures_en/CubeMX_5.png new file mode 100644 index 0000000000..501bf30659 Binary files /dev/null and b/bsp/stm32/docs/figures_en/CubeMX_5.png differ diff --git a/bsp/stm32/docs/figures_en/Kconfig.png b/bsp/stm32/docs/figures_en/Kconfig.png new file mode 100644 index 0000000000..35fb9086f3 Binary files /dev/null and b/bsp/stm32/docs/figures_en/Kconfig.png differ diff --git a/bsp/stm32/docs/figures_en/Kconfig2.png b/bsp/stm32/docs/figures_en/Kconfig2.png new file mode 100644 index 0000000000..d568dfda25 Binary files /dev/null and b/bsp/stm32/docs/figures_en/Kconfig2.png differ diff --git a/bsp/stm32/docs/figures_en/Peripheral.png b/bsp/stm32/docs/figures_en/Peripheral.png new file mode 100644 index 0000000000..dd44eb6233 Binary files /dev/null and b/bsp/stm32/docs/figures_en/Peripheral.png differ diff --git a/bsp/stm32/docs/figures_en/SConscript.png b/bsp/stm32/docs/figures_en/SConscript.png new file mode 100644 index 0000000000..baf1f75e2e Binary files /dev/null and b/bsp/stm32/docs/figures_en/SConscript.png differ diff --git a/bsp/stm32/docs/figures_en/adc_config1.png b/bsp/stm32/docs/figures_en/adc_config1.png new file mode 100644 index 0000000000..c283761c39 Binary files /dev/null and b/bsp/stm32/docs/figures_en/adc_config1.png differ diff --git a/bsp/stm32/docs/figures_en/adc_config2.png b/bsp/stm32/docs/figures_en/adc_config2.png new file mode 100644 index 0000000000..aad860a079 Binary files /dev/null and b/bsp/stm32/docs/figures_en/adc_config2.png differ diff --git a/bsp/stm32/docs/figures_en/adc_config3.png b/bsp/stm32/docs/figures_en/adc_config3.png new file mode 100644 index 0000000000..b45f34f7fc Binary files /dev/null and b/bsp/stm32/docs/figures_en/adc_config3.png differ diff --git a/bsp/stm32/docs/figures_en/adc_config4.png b/bsp/stm32/docs/figures_en/adc_config4.png new file mode 100644 index 0000000000..73b11d3e0d Binary files /dev/null and b/bsp/stm32/docs/figures_en/adc_config4.png differ diff --git a/bsp/stm32/docs/figures_en/board_1.png b/bsp/stm32/docs/figures_en/board_1.png new file mode 100644 index 0000000000..e65aab3255 Binary files /dev/null and b/bsp/stm32/docs/figures_en/board_1.png differ diff --git a/bsp/stm32/docs/figures_en/board_2.png b/bsp/stm32/docs/figures_en/board_2.png new file mode 100644 index 0000000000..6f5399aa7b Binary files /dev/null and b/bsp/stm32/docs/figures_en/board_2.png differ diff --git a/bsp/stm32/docs/figures_en/board_h.png b/bsp/stm32/docs/figures_en/board_h.png new file mode 100644 index 0000000000..b6fecf4179 Binary files /dev/null and b/bsp/stm32/docs/figures_en/board_h.png differ diff --git a/bsp/stm32/docs/figures_en/bsp_template_dir.png b/bsp/stm32/docs/figures_en/bsp_template_dir.png new file mode 100644 index 0000000000..19878160c4 Binary files /dev/null and b/bsp/stm32/docs/figures_en/bsp_template_dir.png differ diff --git a/bsp/stm32/docs/figures_en/complise.png b/bsp/stm32/docs/figures_en/complise.png new file mode 100644 index 0000000000..e05078c9f6 Binary files /dev/null and b/bsp/stm32/docs/figures_en/complise.png differ diff --git a/bsp/stm32/docs/figures_en/config.png b/bsp/stm32/docs/figures_en/config.png new file mode 100644 index 0000000000..9b8f464827 Binary files /dev/null and b/bsp/stm32/docs/figures_en/config.png differ diff --git a/bsp/stm32/docs/figures_en/config1.png b/bsp/stm32/docs/figures_en/config1.png new file mode 100644 index 0000000000..013d357f8c Binary files /dev/null and b/bsp/stm32/docs/figures_en/config1.png differ diff --git a/bsp/stm32/docs/figures_en/config2.png b/bsp/stm32/docs/figures_en/config2.png new file mode 100644 index 0000000000..70c56ad791 Binary files /dev/null and b/bsp/stm32/docs/figures_en/config2.png differ diff --git a/bsp/stm32/docs/figures_en/config3.png b/bsp/stm32/docs/figures_en/config3.png new file mode 100644 index 0000000000..a9cae0a00c Binary files /dev/null and b/bsp/stm32/docs/figures_en/config3.png differ diff --git a/bsp/stm32/docs/figures_en/config4.png b/bsp/stm32/docs/figures_en/config4.png new file mode 100644 index 0000000000..666054ce52 Binary files /dev/null and b/bsp/stm32/docs/figures_en/config4.png differ diff --git a/bsp/stm32/docs/figures_en/config5.png b/bsp/stm32/docs/figures_en/config5.png new file mode 100644 index 0000000000..9eeee83dba Binary files /dev/null and b/bsp/stm32/docs/figures_en/config5.png differ diff --git a/bsp/stm32/docs/figures_en/copy.png b/bsp/stm32/docs/figures_en/copy.png new file mode 100644 index 0000000000..63802ab2cd Binary files /dev/null and b/bsp/stm32/docs/figures_en/copy.png differ diff --git a/bsp/stm32/docs/figures_en/cube_spi3.png b/bsp/stm32/docs/figures_en/cube_spi3.png new file mode 100644 index 0000000000..e32e4f902f Binary files /dev/null and b/bsp/stm32/docs/figures_en/cube_spi3.png differ diff --git a/bsp/stm32/docs/figures_en/cubemx.png b/bsp/stm32/docs/figures_en/cubemx.png new file mode 100644 index 0000000000..f88c22df5a Binary files /dev/null and b/bsp/stm32/docs/figures_en/cubemx.png differ diff --git a/bsp/stm32/docs/figures_en/exit.png b/bsp/stm32/docs/figures_en/exit.png new file mode 100644 index 0000000000..e5280e5308 Binary files /dev/null and b/bsp/stm32/docs/figures_en/exit.png differ diff --git a/bsp/stm32/docs/figures_en/frame.png b/bsp/stm32/docs/figures_en/frame.png new file mode 100644 index 0000000000..71d9742335 Binary files /dev/null and b/bsp/stm32/docs/figures_en/frame.png differ diff --git a/bsp/stm32/docs/figures_en/heap_config.png b/bsp/stm32/docs/figures_en/heap_config.png new file mode 100644 index 0000000000..20860522cb Binary files /dev/null and b/bsp/stm32/docs/figures_en/heap_config.png differ diff --git a/bsp/stm32/docs/figures_en/i2c_device.png b/bsp/stm32/docs/figures_en/i2c_device.png new file mode 100644 index 0000000000..adaa13cd6a Binary files /dev/null and b/bsp/stm32/docs/figures_en/i2c_device.png differ diff --git a/bsp/stm32/docs/figures_en/link_icf.png b/bsp/stm32/docs/figures_en/link_icf.png new file mode 100644 index 0000000000..8f90d0bf09 Binary files /dev/null and b/bsp/stm32/docs/figures_en/link_icf.png differ diff --git a/bsp/stm32/docs/figures_en/link_lds.png b/bsp/stm32/docs/figures_en/link_lds.png new file mode 100644 index 0000000000..c5162c3d77 Binary files /dev/null and b/bsp/stm32/docs/figures_en/link_lds.png differ diff --git a/bsp/stm32/docs/figures_en/linker_scripts.png b/bsp/stm32/docs/figures_en/linker_scripts.png new file mode 100644 index 0000000000..32e36e2339 Binary files /dev/null and b/bsp/stm32/docs/figures_en/linker_scripts.png differ diff --git a/bsp/stm32/docs/figures_en/linkscripts_change.png b/bsp/stm32/docs/figures_en/linkscripts_change.png new file mode 100644 index 0000000000..8bef5aad82 Binary files /dev/null and b/bsp/stm32/docs/figures_en/linkscripts_change.png differ diff --git a/bsp/stm32/docs/figures_en/menuconfig.png b/bsp/stm32/docs/figures_en/menuconfig.png new file mode 100644 index 0000000000..c1a7c6dbd6 Binary files /dev/null and b/bsp/stm32/docs/figures_en/menuconfig.png differ diff --git a/bsp/stm32/docs/figures_en/menuconfig_1.png b/bsp/stm32/docs/figures_en/menuconfig_1.png new file mode 100644 index 0000000000..dfda5b9cab Binary files /dev/null and b/bsp/stm32/docs/figures_en/menuconfig_1.png differ diff --git a/bsp/stm32/docs/figures_en/menuconfig_2.png b/bsp/stm32/docs/figures_en/menuconfig_2.png new file mode 100644 index 0000000000..9db5e8dd81 Binary files /dev/null and b/bsp/stm32/docs/figures_en/menuconfig_2.png differ diff --git a/bsp/stm32/docs/figures_en/menuconfig_3.png b/bsp/stm32/docs/figures_en/menuconfig_3.png new file mode 100644 index 0000000000..6a59e34228 Binary files /dev/null and b/bsp/stm32/docs/figures_en/menuconfig_3.png differ diff --git a/bsp/stm32/docs/figures_en/menuconfig_4.png b/bsp/stm32/docs/figures_en/menuconfig_4.png new file mode 100644 index 0000000000..0d52487953 Binary files /dev/null and b/bsp/stm32/docs/figures_en/menuconfig_4.png differ diff --git a/bsp/stm32/docs/figures_en/menuconfig_apolo.png b/bsp/stm32/docs/figures_en/menuconfig_apolo.png new file mode 100644 index 0000000000..286c435a69 Binary files /dev/null and b/bsp/stm32/docs/figures_en/menuconfig_apolo.png differ diff --git a/bsp/stm32/docs/figures_en/on_chip_config.png b/bsp/stm32/docs/figures_en/on_chip_config.png new file mode 100644 index 0000000000..84e2db3efc Binary files /dev/null and b/bsp/stm32/docs/figures_en/on_chip_config.png differ diff --git a/bsp/stm32/docs/figures_en/open_cubemx.png b/bsp/stm32/docs/figures_en/open_cubemx.png new file mode 100644 index 0000000000..89279d52c2 Binary files /dev/null and b/bsp/stm32/docs/figures_en/open_cubemx.png differ diff --git a/bsp/stm32/docs/figures_en/pulse_encoder_config1.png b/bsp/stm32/docs/figures_en/pulse_encoder_config1.png new file mode 100644 index 0000000000..dafcc071c3 Binary files /dev/null and b/bsp/stm32/docs/figures_en/pulse_encoder_config1.png differ diff --git a/bsp/stm32/docs/figures_en/pulse_encoder_config2.png b/bsp/stm32/docs/figures_en/pulse_encoder_config2.png new file mode 100644 index 0000000000..2fb5888a35 Binary files /dev/null and b/bsp/stm32/docs/figures_en/pulse_encoder_config2.png differ diff --git a/bsp/stm32/docs/figures_en/pulse_encoder_config3.png b/bsp/stm32/docs/figures_en/pulse_encoder_config3.png new file mode 100644 index 0000000000..b33f7bf074 Binary files /dev/null and b/bsp/stm32/docs/figures_en/pulse_encoder_config3.png differ diff --git a/bsp/stm32/docs/figures_en/pulse_encoder_config4.png b/bsp/stm32/docs/figures_en/pulse_encoder_config4.png new file mode 100644 index 0000000000..c488f03682 Binary files /dev/null and b/bsp/stm32/docs/figures_en/pulse_encoder_config4.png differ diff --git a/bsp/stm32/docs/figures_en/pwm_config1.png b/bsp/stm32/docs/figures_en/pwm_config1.png new file mode 100644 index 0000000000..2a98c933b4 Binary files /dev/null and b/bsp/stm32/docs/figures_en/pwm_config1.png differ diff --git a/bsp/stm32/docs/figures_en/pwm_config2.png b/bsp/stm32/docs/figures_en/pwm_config2.png new file mode 100644 index 0000000000..8798513cf4 Binary files /dev/null and b/bsp/stm32/docs/figures_en/pwm_config2.png differ diff --git a/bsp/stm32/docs/figures_en/pwm_config3.png b/bsp/stm32/docs/figures_en/pwm_config3.png new file mode 100644 index 0000000000..20d37bf37f Binary files /dev/null and b/bsp/stm32/docs/figures_en/pwm_config3.png differ diff --git a/bsp/stm32/docs/figures_en/pwm_config4.png b/bsp/stm32/docs/figures_en/pwm_config4.png new file mode 100644 index 0000000000..bd39d8da70 Binary files /dev/null and b/bsp/stm32/docs/figures_en/pwm_config4.png differ diff --git a/bsp/stm32/docs/figures_en/rt_device.png b/bsp/stm32/docs/figures_en/rt_device.png new file mode 100644 index 0000000000..aec500e4ff Binary files /dev/null and b/bsp/stm32/docs/figures_en/rt_device.png differ diff --git a/bsp/stm32/docs/figures_en/run_flash.png b/bsp/stm32/docs/figures_en/run_flash.png new file mode 100644 index 0000000000..f13378fde8 Binary files /dev/null and b/bsp/stm32/docs/figures_en/run_flash.png differ diff --git a/bsp/stm32/docs/figures_en/run_spi3.png b/bsp/stm32/docs/figures_en/run_spi3.png new file mode 100644 index 0000000000..850e8a2b3e Binary files /dev/null and b/bsp/stm32/docs/figures_en/run_spi3.png differ diff --git a/bsp/stm32/docs/figures_en/save.png b/bsp/stm32/docs/figures_en/save.png new file mode 100644 index 0000000000..3f639c3238 Binary files /dev/null and b/bsp/stm32/docs/figures_en/save.png differ diff --git a/bsp/stm32/docs/figures_en/scons_mdk5.png b/bsp/stm32/docs/figures_en/scons_mdk5.png new file mode 100644 index 0000000000..dbb833f028 Binary files /dev/null and b/bsp/stm32/docs/figures_en/scons_mdk5.png differ diff --git a/bsp/stm32/docs/figures_en/spi_code.png b/bsp/stm32/docs/figures_en/spi_code.png new file mode 100644 index 0000000000..8f06dd4cc2 Binary files /dev/null and b/bsp/stm32/docs/figures_en/spi_code.png differ diff --git a/bsp/stm32/docs/figures_en/spi_config.png b/bsp/stm32/docs/figures_en/spi_config.png new file mode 100644 index 0000000000..3e9ac9535c Binary files /dev/null and b/bsp/stm32/docs/figures_en/spi_config.png differ diff --git a/bsp/stm32/docs/figures_en/spi_flash.png b/bsp/stm32/docs/figures_en/spi_flash.png new file mode 100644 index 0000000000..584e396f1c Binary files /dev/null and b/bsp/stm32/docs/figures_en/spi_flash.png differ diff --git a/bsp/stm32/docs/figures_en/template_1.png b/bsp/stm32/docs/figures_en/template_1.png new file mode 100644 index 0000000000..23b98859a6 Binary files /dev/null and b/bsp/stm32/docs/figures_en/template_1.png differ diff --git a/bsp/stm32/docs/figures_en/template_2.png b/bsp/stm32/docs/figures_en/template_2.png new file mode 100644 index 0000000000..489a667e0b Binary files /dev/null and b/bsp/stm32/docs/figures_en/template_2.png differ diff --git a/bsp/stm32/docs/figures_en/template_3.png b/bsp/stm32/docs/figures_en/template_3.png new file mode 100644 index 0000000000..620076934a Binary files /dev/null and b/bsp/stm32/docs/figures_en/template_3.png differ diff --git a/bsp/stm32/docs/figures_en/timer_config1.png b/bsp/stm32/docs/figures_en/timer_config1.png new file mode 100644 index 0000000000..2e891a8c6f Binary files /dev/null and b/bsp/stm32/docs/figures_en/timer_config1.png differ diff --git a/bsp/stm32/docs/figures_en/timer_config2.png b/bsp/stm32/docs/figures_en/timer_config2.png new file mode 100644 index 0000000000..80a053d5ee Binary files /dev/null and b/bsp/stm32/docs/figures_en/timer_config2.png differ diff --git a/bsp/stm32/docs/figures_en/timer_config3.png b/bsp/stm32/docs/figures_en/timer_config3.png new file mode 100644 index 0000000000..a726273396 Binary files /dev/null and b/bsp/stm32/docs/figures_en/timer_config3.png differ diff --git a/bsp/stm32/docs/figures_en/timer_config4.png b/bsp/stm32/docs/figures_en/timer_config4.png new file mode 100644 index 0000000000..08812eaec0 Binary files /dev/null and b/bsp/stm32/docs/figures_en/timer_config4.png differ diff --git a/bsp/stm32/docs/figures_en/update.png b/bsp/stm32/docs/figures_en/update.png new file mode 100644 index 0000000000..fa1531ae85 Binary files /dev/null and b/bsp/stm32/docs/figures_en/update.png differ diff --git a/bsp/stm32/docs/figures_en/xCubeMX_1.png b/bsp/stm32/docs/figures_en/xCubeMX_1.png new file mode 100644 index 0000000000..055d3af209 Binary files /dev/null and b/bsp/stm32/docs/figures_en/xCubeMX_1.png differ