这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » MCU » 在vxworks中如何使用启动脚本startup script

共5条 1/1 1 跳转至

在vxworks中如何使用启动脚本startup script

菜鸟
2004-06-03 19:04:26     打赏
1 选择一个合适的bsp,创建一个bootable vxworks image project,包含shell startup script组件。
在usrAppInit()中添加代码:
printf("\nusrAppInit\n");
这条语句的作用就是为了比较usrAppInit()和startup script谁先执行。
2 写一个demo.c,文件内容如下:
#include "vxworks.h"
void demo(void)
{
int x;
for(x=0;x<5;x++)
printf("x=%d\n",x);
}
把它加入到vxworks的工程中。这是一个简单的用户函数例子。
3 在vxworks文件所在的目录下,创建一个文件myscripts.txt,其内容为:
printf("hello\n")
demo()
routeShow()
i
为了能够调用routeShow,vxworks配置中需要包含网络调试组件。
4 启动目标机,在bootrom引导vxworks时,指定startup script参数,如:
boot device : cpm
unit number : 0
processor number : 0
host name : chenqi
file name : vxWorks
inet on ethernet (e) : 192.168.0.200
host inet (h) : 192.168.0.118
user (u) : target
ftp password (pw) : target
flags (f) : 0x0
target name (tn) : 850pc
startup script (s) : myscript.txt
5 如果一切正常,vxworks启动完毕之后,会有:
Executing startup script myscript.txt ...
printf("hello\n")
hello
value = 6 = 0x6
demo()
x=0
x=1
x=2
x=3
x=4
value = 4 = 0x4
routeShow() ROUTE NET TABLE
Destination Gateway Flags Refcnt Use Interface
--------------------------------------------------------------------
192.168.0.0 192.168.0.200 0x101 1 0 cpm0
-------------------------------------------------------------------- ROUTE HOST TABLE
Destination Gateway Flags Refcnt Use Interface
--------------------------------------------------------------------
127.0.0.1 127.0.0.1 0x5 0 0 lo0
--------------------------------------------------------------------
value = 69 = 0x45 = 'E'
i(0)
Show routine of this object not configured into system.
value = 56 = 0x38 = '8'
Done executing startup script myscript.txt usrAppInit
由此可见,startup script在usrAppInit函数之前执行。
在上述试验中,需要注意最好让vxworks文件和myscript.txt文件在同一位置。



关键词: vxworks     如何     使用     启动     脚本     start    

菜鸟
2004-06-03 19:13:00     打赏
2楼
好, 怎莫不自己加精, 我来帮你:)

菜鸟
2004-07-27 20:37:00     打赏
3楼
当然可以。 最好此时把vxworks文件和脚本文件都保存在tffs设备上。

菜鸟
2004-07-30 19:14:00     打赏
4楼
如果你是通过网络加载vxworks的,那么在vxworks的配置中包含:Ftp client,和networks remote i/o support组件。

菜鸟
2006-11-03 00:09:00     打赏
5楼

lz,你好:

我按照你写的步骤来实现startup script,但总是出错,总是说找不到demo(),如果只调用vxworks内部命令就正常运行,是不是我需要初始化某些文件或将自己的应用程序include或者是路径问题?

搞了半天了还是无法调用自己的应用模块,盼lz给以提示,谢谢!!

新手菜鸟


共5条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]