我有一个应用程序模块sample.out。要是将它和VxWorks做在一起,在ursAppInit.c中添加一个taskSpawn函数,就可以实现vxWorks启动之后,自动发起一个任务,运行sample.out。但这样做生成的VxWorks会很大,我听说可以在usrAppInit.c中调用别的函数,可以将vxWorks和sample.out分开,vxworks启动之后,手动输入sample.out,系统会到c盘根目录下找sample.out,然后运行,请问这个怎么实现?

试试这个代码,应该可以load 吧!
#include <vxWorks.h>
#include <stdio.h>
#include <ioLib.h>
#include <loadLib.h>
#include <symLib.h>
#include <taskLib.h>
#include <moduleLib.h>
#include <nfsLib.h>
#include <nfsDrv.h>
#include <netDrv.h>
extern SYMTAB_ID sysSymTbl;
int loadTest()
{
int fd = ERROR;
int status = ERROR ;
MODULE_ID hModule;
FUNCPTR taskEntry = NULL;
SYM_TYPE * pType;
fd = open("/tffs/project0.out",O_RDONLY,0644);
if (fd==ERROR)
{
printf("can not open file.\n");
return ERROR;
}
else
{
printf(" file opened.\n");
}
printf("before loadModule\n");
if ((hModule=loadModule( fd,LOAD_GLOBAL_SYMBOLS))==NULL)
{
printf("loadModule error = 0x%x.\n",errno);
return ERROR;
}
close(fd);
status = symFindByName(sysSymTbl,"hello",(char **)&taskEntry,pType);
if (status==ERROR)
{
printf("symFindByName error=%d\n", errno);
return ERROR;
}
else
{
printf("taskEntryr=0x%x, type=%d\n.",(int)taskEntry,(int)*pType);
}
status = taskSpawn("test",100,0,30000,taskEntry,0,0,0,0,0,0,0,0,0,0);
if (status==ERROR)
{
printf("taskSpawn error=%d\n",errno);
return ERROR;
}
return OK;
}
回复
打赏帖 | |
---|---|
嵌入式LinuxC语言程序调试和宏使用技巧被打赏50分 | |
让代码中包含最新的编译时间信息被打赏50分 | |
rtthread硬件加密--2crc加密分析被打赏10分 | |
【分享开发笔记,赚取电动螺丝刀】mcxa156使用低功耗定时器适配硬件RTC框架被打赏26分 | |
【STM32F769】AI之与本地deepseek对接被打赏50分 | |
Buck电路工作在CCM模式下电感电流的计算公式是什么?被打赏5分 | |
buck电路工作原理被打赏5分 | |
基于MSPM0L1306的MODBUS-RTU协议通讯实验被打赏100分 | |
我想要一部加热台+多合一调试工具被打赏18分 | |
每周了解几个硬件知识+485硬件知识分享被打赏10分 |