rt-thread-official/bsp/stm32f10x
Grissiom 2a9e893c79 initialize timer in bsp
With new timer algorithm, timer should be initialized during startup. So
add them to the bsps. Use these commands to get which bsp is missing
calling the function:

    % git grep rt_system_timer_init bsp|sed -n 's|bsp/\([^/]*\).*|\1|p' | sort | uniq > have_tm_init
    % ls -1 bsp |sed -n 's|\([^/]*\).*|\1|p' | sort > all_bsp
    % comm -3 all_bsp have_tm_init
    beaglebone
    lpc176x
    lpc178x
    ls1bdev
    mb9bf506r
    stm32f10x
    xplorer4330
2013-10-21 00:31:10 +08:00
..
Libraries Re-normalizing the repo 2013-01-08 22:40:58 +08:00
applications initialize timer in bsp 2013-10-21 00:31:10 +08:00
drivers update usart driver: use serial driver component. 2013-07-12 23:32:48 +08:00
SConscript update stm32f10x project directory structure. 2013-07-12 18:16:43 +08:00
SConstruct update stm32f10x project directory structure. 2013-07-12 18:16:43 +08:00
project.Uv2 update usart driver: use serial driver component. 2013-07-12 23:32:48 +08:00
project.ewp update usart driver: use serial driver component. 2013-07-12 23:32:48 +08:00
project.eww update stm32f10x project. 2013-07-12 18:31:42 +08:00
project.uvproj update usart driver: use serial driver component. 2013-07-12 23:32:48 +08:00
readme.txt Re-normalizing the repo 2013-01-08 22:40:58 +08:00
rtconfig.h update usart driver: use serial driver component. 2013-07-12 23:32:48 +08:00
rtconfig.py Re-normalizing the repo 2013-01-08 22:40:58 +08:00
stm32_rom.ld update linker script for components auto initial. 2013-07-11 23:07:16 +08:00
stm32_rom.sct revert stm32_rom.sct 2011-07-04 07:52:55 +00:00
stm32f10x_flash.icf update linker script for components auto initial. 2013-07-12 22:50:50 +08:00
template.Uv2 update stm32f10x template. 2013-02-20 10:49:09 +08:00
template.ewp define RT_USING_RTT_CMSIS in rtconfig.h while using IAR 6.30+ 2012-06-18 03:00:01 +00:00
template.uvproj update stm32f10x project. 2013-07-12 18:31:42 +08:00

readme.txt

-- cn --
按需要生成工程文件:
1. 修改 rtconfig.py :
CROSS_TOOL='keil'           #使用的工具链
STM32_TYPE = 'STM32F10X_HD' #STM32对应的型号.
2. 修改 rtconfig.h 配置需要的功能.
2. 执行 scons --target=mdk  生成MDK工程文件.

note: 需要安装 python,scons.

-- en --