rt-thread-official/bsp/simulator
liukangcc ccbd22f493 [update] refresh project 2022-01-26 18:30:23 +08:00
..
Debug 更新替换 SDL; 2018-01-19 13:38:43 +08:00
SDL2-2.0.7 [simulator] 手动-自动格式化整理 2021-03-20 22:39:32 +08:00
applications [sconscript] 代替+=的表述方法 2022-01-08 15:48:50 +08:00
disk create disk/{ad, nor, nand in bsp/simulator 2013-01-28 18:05:19 +08:00
drivers [update] move dfs_posix.h to legacy/dfs/dfs_posix.h 2022-01-14 23:09:32 +08:00
pcap [simulator] 手动-自动格式化整理 2021-03-20 22:39:32 +08:00
.config [update] refresh project 2022-01-26 18:30:23 +08:00
.gdbinit add .gdbinit to bsp/simulator 2013-01-22 17:45:06 +08:00
.gitignore Update .gitignore file. 2017-12-14 09:58:40 +08:00
Kconfig [simulator] 消除vs下的警告 2022-01-08 15:46:52 +08:00
SConscript Re-normalizing the repo 2013-01-08 22:40:58 +08:00
SConstruct [update] CFLAGS 2021-12-17 14:28:40 +08:00
createdef.py simulator: add createdef.py to generate def file for VS 2013-10-14 22:53:59 +08:00
dummy.c [simulator] 手动-自动格式化整理 2021-03-20 22:39:32 +08:00
gcc.ld simulator: update to support simulator for linux 2013-07-22 23:02:03 +08:00
mingw.ld simulator: update code for new component initialization support on mingw 2013-07-11 23:31:34 +08:00
readme.txt simulator: disable RTGUI in rtconfig.h 2013-12-08 20:39:19 +08:00
readme_en.txt Re-normalizing the repo 2013-01-08 22:40:58 +08:00
rtconfig.h [console] 解决在没有定义RT_USING_DEVICE的情况下使用device报错的问题 2022-01-09 00:20:32 +08:00
rtconfig.py [bsp][simulator] update project 2021-10-29 09:59:45 -04:00
rtconfig_project.h [simulator] 消除vs下的警告 2022-01-08 15:46:52 +08:00
template_vs2005.vcproj scons script: support to generate vs2012 project xml 2013-10-01 15:37:34 +08:00
template_vs2012.vcxproj [simulator] 解决““Gm”选项已否决,并将在将来的版本中移除”的警告 2022-01-08 17:40:26 -05:00

readme.txt

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

说明: 本BSP可以如下演示
依赖软件包
    python2.7 (python2.6无法生成vs工程

一 平台及组件支持
目前rtconfig.py中支持的编译器有

1). msvc 用于windows平台
  此平台支持的组件
    kernel
    finsh
    LWIP
    DFS, ELM FatFS, UFFS, JFFS2, DFS_WIN32
    RTGUI
    APP MODULE
2). mingw 用于windows平台
    kernel
    finsh
    DFS, ELM FatFS, UFFS, DFS_WIN32
    RTGUI
    APP MODULE
3). gcc 用于linux平台
    kernel
    finsh
    DFS, ELM FatFS, UFFS
    RTGUI

请根据自己的实际情况修改rtconfig.py中CROSS_TOOL为上述某一值。

二 组件配置
1) RTGUI
RTGUI的最新源码目前托管在github上https://github.com/RT-Thread/RTGUI
下载最新的RTGUI源码将RTGUI源码包中components下的rtgui目录复制到Rt-thread的components目录下。

三 编译
1) 使用Visual Studio(2005以上版本)
在当前目录中打开cmd输入命令
`scons --target=vs -s`
生成vs2005的project.vsproj使用vs2005及以上版本可以打开(VS2005需要转换工程。

或直接生成vs2012工程
`scons --target=vs2012 -s`

2) 命令行编译
修改rtconfig.py, 配置合适的编译器(msvc/mingw/gcc),及其路径
在当前目录中打开cmd输入命令
`scons -j4`
编译完成后会在当前目录下生成 rtthread-win32.exe双击即可运行。

四 程序测试
1) 测试文件系统
此时当前目录下,新增了三个文件
 sd.bin--模拟SD卡挂载fat大小为16M
 nand.bin-模拟nand flash挂载uffs参数page=2048+64bytesblock=64pages16M
 nor.bin--模拟nor flash挂载jffs2型号为sst25vf2M
第一次启动时会看到fatfs挂在失败。
按下回车出现finsh然后输入`mkfs("elm", "sd0")`格式化SD卡如下所示
	finsh>>mkfs("elm", "sd0")
			0, 0x00000000
重启程序可以正确挂载fat文件系统。

2) 测试RTGUI
打开RTGUI组件后编译启动在finsh中输入snake_main()并回车,可运行贪吃蛇程序

3) 测试APP module
在rtconfig.h中打开RT_USING_MODULE

测试app module需要执行3步如下a, b, c所示。

a. 生成rtthread.def文件
执行`scons --def`可以自动生成rtthread.def。
当修改了rtconfig.h打开或禁用了某些组件时需要重新生成rtthread.def文件.

b. 生成主程序

  `scons -j4`

c. 生成app module
  进入testdll目录再次修改 testdll/SConstruct 同样需要配置RTT_RTGUI路径同 1中3)
  在此目录下执行
    `scons --app=basicapp`
  就会在 basicapp/building目录下生成 basicapp.dll。 

  然后运行simulator目录下的 rtthread-win32.exe, 在finsh中运行   
    `exec("/testdll/basicapp/build/basicapp.dll")` 
  如果觉得这个路径太长可以将basicapp.dll复制到 simualtor目录下执行
    `exec("/basicapp.dll")`

  编译贪吃蛇程序
  执行`scons --app=snake`会在snake/build/下生成snake.dll按照同样的方式加载即可