zyh 0214092051 [Bsp]Add Readme for stm32f10x 7 年 前
..
Libraries b4de7cce57 Re-normalizing the repo 12 年 前
applications 296d57e859 [BSP] remove components.h file. 7 年 前
drivers 2b1fc7c4c4 [bsp][stm32f10x]enable RT_USING_COMPONENTS_INIT and fix SConscript for rtc 7 年 前
.config 2b1fc7c4c4 [bsp][stm32f10x]enable RT_USING_COMPONENTS_INIT and fix SConscript for rtc 7 年 前
Kconfig 3aa582bc17 [BSP] Add Kconfig for lpc408x/stm32f10x/stm32f20x/stm32f40x etc 7 年 前
README.md 0214092051 [Bsp]Add Readme for stm32f10x 7 年 前
SConscript 8c2a11c234 update stm32f10x project directory structure. 11 年 前
SConstruct 8c2a11c234 update stm32f10x project directory structure. 11 年 前
project.ewp 4043a68ad4 [bsp][stm32f10x] update projects 7 年 前
project.eww a183f1fbe9 update stm32f10x project. 11 年 前
project.uvproj 4043a68ad4 [bsp][stm32f10x] update projects 7 年 前
project.uvprojx 0de277a0c0 [bsp][stm32f10x] : unable to use microlib 7 年 前
readme.txt 9b2b1bb4a1 [bsp] Add some descriptions and an English version about building project in readme.txt. 7 年 前
rtconfig.h 2b1fc7c4c4 [bsp][stm32f10x]enable RT_USING_COMPONENTS_INIT and fix SConscript for rtc 7 年 前
rtconfig.py cd39c2525a [bsp] support get compiler path by environment variables for IAR 7 年 前
stm32_rom.ld cc8301d0f1 update linker script for components auto initial. 11 年 前
stm32_rom.sct 8109f9d59c revert stm32_rom.sct 14 年 前
stm32f10x_flash.icf 573c294216 [BSP] Fix component initialization functions may be not sequential storage on ROM when used for IAR linker. 7 年 前
template.ewp efeb6231be define RT_USING_RTT_CMSIS in rtconfig.h while using IAR 6.30+ 13 年 前
template.uvproj fc2467a190 fix keil armcc compiling report "Error: expected an expression" 9 年 前
template.uvprojx 0de277a0c0 [bsp][stm32f10x] : unable to use microlib 7 年 前

README.md

STM32F10x 板级支持包

1. 简介

STM32F1 是由意法半导体推出的Cortex-M3内核的高性能单片机 包括如下硬件特性:

| 硬件 | 描述 | | -- | -- | |芯片型号| STM32F10x全系列 | |CPU| Cortex-M3 | |主频| 48MHz-72MHz |

2. 编译说明

环境 说明
PC操作系统 Linux/MacOS/Windows
编译器 arm-none-eabi-gcc version 6.3.1 20170620 (release)/armcc/iar
构建工具 scons/mdk5/iar
依赖软件环境 Env工具/(MDK或IAR或arm-none-eabi-gcc)/git/调试器驱动

1) 下载源码

    git clone https://github.com/RT-Thread/rt-thread.git

2) 配置工程并准备env

(Linux/Mac)

    cd rt-thread/bsp/stm32f10x
    scons --menuconfig
    source ~/.env/env.sh
    pkgs --upgrade

(Windows)

RT-Thread官网下载ENV工具包

3) 配置芯片型号

(Linux/Mac)

    scons --menuconfig

(Windows(ENV环境中))

    menuconfig

在menuconfig页面配置并选择对应的芯片型号,若开发环境为MDK/IAR,则需要生成工程

4) 生成工程(Mac/Linux下请跳过此步骤)

(Windows IAR)

    SET RTT_CC=iar
    scons --target=iar -s

(Windows MDK5)

    scons --target=mdk5 -s

(Windows MDK4)

    scons --target=mdk4 -s

5) 编译

使用MDK或IAR请参见对应教程

(Windows arm-none-eabi-gcc) 使用以下指令设置gcc路径

    SET RTT_EXEC_PATH=[GCC路径]

(Linux/Mac arm-none-eabi-gcc) 使用以下指令设置gcc路径

    export RTT_EXEC_PATH=[GCC路径]

编译(WindowsLinux/Mac arm-none-eabi-gcc)

    scons -j4

出现下列信息即为编译成功

    LINK rtthread-stm32.elf
    arm-none-eabi-objcopy -O binary rtthread-stm32.elf rtthread.bin
    arm-none-eabi-size rtthread-stm32.elf
    text    data     bss     dec     hex filename
    46356     424    1520   48300    bcac rtthread-stm32.elf
    scons: done building targets.

如果编译正确无误,会产生rtthread-stm32.elf、rtthread.bin文件。其中rtthread.bin为二进制固件

3. 烧写及执行

烧写可以使用仿真器 ISP等多种方式 此处不再赘述

3.1 运行结果

如果编译 & 烧写无误,会在串口2*上看到RT-Thread的启动logo信息:

 \ | /
- RT -     Thread Operating System
 / | \     3.0.4 build May 15 2018
 2006 - 2018 Copyright by rt-thread team
msh />

*默认串口

4. 驱动支持情况及计划

驱动 支持情况 备注
UART 支持 UART1/2/3/4
GPIO 支持 /

4.1 IO在板级支持包中的映射情况

| IO号 | 板级包中的定义 | | -- | -- | | PA9 | USART1 TX | | PA10 | USART1 RX | | PA2 | USART2 TX | | PA3 | USART2 RX | | PB10 | USART3 TX | | PB11 | USART3 RX | | PC10 | UART4 TX | | PC11 | UART4 RX |

5. menuconfig Bsp菜单详解

| 选项 | 解释 | | -- | -- | | Enable UART1 (PA9/10) | 开启串口1,串口1的设备名为"uart1" | | Enable UART2 (PA2/3) | 开启串口2,串口1的设备名为"uart2" | | Enable UART3 (PB10/11) | 开启串口3,串口1的设备名为"uart3" | | Enable UART4 (PC10/11) | 开启串口4,串口1的设备名为"uart4" |

*部分选项需要在RT-Thread组件菜单中开启对应的设备框架才能显示。

6. 联系人信息

维护人: uestczyh222 < lymz@foxmail.com >