2495|1

63

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

中断问题 [复制链接]

#include
#include "vxWorks.h"
#include
#include
#include "sysLib.h"
#include
#include "taskLib.h"
SEM_ID syncSem;
void inxxxx(void);
void task1(void);
void interruptxxxx(void);
#define INUM_TO_IVEC(intNum)    ((VOIDFUNCPTR *) (intNum));

void usrAppInit (void)
    {
#ifdef        USER_APPL_INIT
        USER_APPL_INIT;       
#endif

        SysInit();
        printf(">>system inital ok!!\n");

        inxxxx();
    }
void inxxxx(void)
{
        int x=6;
        printf("1\n");
        intConnect(INUM_TO_IVEC(6),(VOIDFUNCPTR)interruptxxxx,0);
        printf("2\n");
        syncSem = semBCreate (SEM_Q_FIFO, SEM_EMPTY);
        taskSpawn("sample",100,0,20000,task1,0,0,0,0,0,0,0,0,0,0);
        printf("3\n");
}
void task1(void)
{
        int i;
        semTake (syncSem, WAIT_FOREVER); /* 等待事件的发生 */
        while(1)
        {
                printf("put runled post\n");
                scanf("%d ",&i);
                RunLED2(i);
        }
}
void interruptxxxx(void)
{
        semGive (syncSem); /* 通知事件的发生*/
}  
编译这样错误
..\usrAppInit.c: In function `inxxxx':
..\usrAppInit.c:58: parse error before `;'
..\usrAppInit.c:61: warning: passing arg 5 of `taskSpawn' from incompatible pointer type

最新回复

#define INUM_TO_IVEC(intNum)    ((VOIDFUNCPTR *) (intNum)); 后面没有逗号!!!    ***************************************************************************** 欢迎使用eeworld论坛专用阅读器 : eeworld Reader(附全部源代码) http://www.cnblogs.com/feiyun0112/archive/2006/09/20/509783.html  详情 回复 发表于 2007-7-19 13:38
点赞 关注

回复
举报

78

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
#define INUM_TO_IVEC(intNum)    ((VOIDFUNCPTR *) (intNum));
后面没有逗号!!!
  
*****************************************************************************
欢迎使用eeworld论坛专用阅读器 : eeworld Reader(附全部源代码)

http://www.cnblogs.com/feiyun0112/archive/2006/09/20/509783.html
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表