這篇文章主要介紹vxworks中VxBus怎么用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
讓客戶(hù)滿(mǎn)意是我們工作的目標(biāo),不斷超越客戶(hù)的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶(hù),將通過(guò)不懈努力成為客戶(hù)在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:國(guó)際域名空間、雅安服務(wù)器托管、營(yíng)銷(xiāo)軟件、網(wǎng)站建設(shè)、彭山網(wǎng)站維護(hù)、網(wǎng)站推廣。
#include
/* printf */ #include
/* drvBusFuncs */ #include
/* vxbPciRegister */
#define MYDEVNAME "myDev"
static void myDevInstInit (struct vxbDev *pDev);
static void myDevInstInit2 (struct vxbDev *pDev);
static void myDevInstConnect(struct vxbDev *pDev);
static struct drvBusFuncs myDevFuncs =
{
myDevInstInit, /* devInstanceInit */
myDevInstInit2, /* devInstanceInit2 */
myDevInstConnect /* devConnect */
};
static struct vxbDevRegInfo myDevReg =
{
NULL,
VXB_DEVID_DEVICE, /* 這是個(gè)Device的Driver */
VXB_BUSID_PCI, /* 這是個(gè)PCI Device */
VXB_VER_5_0_0,
MYDEVNAME,
&myDevFuncs,
NULL,
NULL,
NULL
};
static void myDevInstInit(struct vxbDev *pDev)
{ }
static void myDevInstInit2(struct vxbDev *pDev)
{ }
static void myDevInstConnect(struct vxbDev *pDev)
{ }
void myDevRegister()
{
vxbDevRegister((struct vxbDevRegInfo *)&myDevReg);
}
static struct vxbPciID myDevIDList[] = { /* devID, vendID */ {0x0740, 0x15ad}, {0x0790, 0x15ad} };static struct vxbPciRegister myDevReg = { { NULL, /* pNext */ VXB_DEVID_DEVICE, /* BUS_DEVID_DEVICE or BUS_DEVID_BUSCTRL */ VXB_BUSID_PCI, /* PCI */ VXB_VER_5_0_0, /* vxbVersion */ MYDEVNAME, /* drvName */ &myDevFuncs, /* pDrvBusFuncs */ NULL, /* pMethods */ NULL, /* devProbe */ NULL /* pParamDefaults */ }, NELEMENTS(myDevIDList), myDevIDList };
static void myDevInstInit ( struct vxbDev *pDev) { vxbNextUnitGet(pDev); }
再執(zhí)行就正常了
以上是“vxworks中VxBus怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!