RT-Thread V2.1.0 重构工程(IAR为例)

RTT版本:rt-thread-2.1.0        http://pan.baidu.com/s/1mgIAyWo

Python版本:python-2.7.14.amd64.msi

scons版本:scons-2.5.1-setup.exe

工具版本选择说明:根据README.md 说明:

RT-Thread RTOS uses [scons](http://www.scons.org) as building system. Therefore, please install scons and Python 2.7 firstly. 

 

Python安装请自行百度,提示注意环境变量的选项!

笔者window7 64位操作系统,安装完Python后安装scons时提示找不到Python安装目录,解决办法:

将以下代码完整复制为reg.py文件,然后通过cmd命令进入文件所在目录,执行reg.py,再执行scons安装程序

#
# script to register Python 2.0 or later for use with win32all
# and other extensions that require Python registry settings
#
# written by Joakim Loew for Secret Labs AB / PythonWare
#
# source:
# http://www.pythonware.com/products/works/articles/regpy20.htm
#
# modified by Valentine Gogichashvili as described in http://www.mail-archive.com/distutils-sig@python.org/msg10512.html
 
import sys
 
from _winreg import *
 
# tweak as necessary
version = sys.version[:3]
installpath = sys.prefix
 
regpath = "SOFTWARE\\Python\\Pythoncore\\%s\\" % (version)
installkey = "InstallPath"
pythonkey = "PythonPath"
pythonpath = "%s;%s\\Lib\\;%s\\DLLs\\" % (
    installpath, installpath, installpath
)
 
def RegisterPy():
    try:
        reg = OpenKey(HKEY_CURRENT_USER, regpath)
    except EnvironmentError as e:
        try:
            reg = CreateKey(HKEY_CURRENT_USER, regpath)
            SetValue(reg, installkey, REG_SZ, installpath)
            SetValue(reg, pythonkey, REG_SZ, pythonpath)
            CloseKey(reg)
        except:
            print "*** Unable to register!"
            return
        print "--- Python", version, "is now registered!"
        return
    if (QueryValue(reg, installkey) == installpath and
        QueryValue(reg, pythonkey) == pythonpath):
        CloseKey(reg)
        print "=== Python", version, "is already registered!"
        return
    CloseKey(reg)
    print "*** Unable to register!"
    print "*** You probably have another Python installation!"
 
if __name__ == "__main__":
    RegisterPy()

(笔者使用STM32F103ZET6)  

工具安装完成后修改rt-thread-v2.1.0\rt-thread-2.1.0\bsp\stm32f10x目录下rtconfig.py文件:

根据README.md介绍:

* ```CROSS_TOOL``` the compiler which you want to use, gcc/keil/iar.   使用的IDE
* ```EXEC_PATH``` the path of compiler.               iar安装目录

修改为:

第6行:CROSS_TOOL='iar'

第34行:IAR_PATH = 'D:\IAR Systems\Embedded Workbench 7.0'

通过cmd控制台进入到rt-thread-v2.1.0\rt-thread-2.1.0\bsp\stm32f10x目录,执行命令:scons

编译完成后打开IAR工程,make一下,如果依然报错,执行命令:scons --target=iar -s

命令说明:

When you set these variables correctly, you can use command:

scons

under BSP directory to simplely compile RT-Thread RTOS.

If you want to generate the IDE's project file, you can use command:

scons --target=mdk/mdk4/mdk5/iar/cb -s

to generate the project file.

IAR提示工程文件更改,选择yes to all即可。

转载于:https://www.cnblogs.com/skawu/articles/7648031.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值