您好,登錄后才能下訂單哦!
這篇文章主要介紹vxworks中VxBus怎么用,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
#include <stdio.h> /* printf */
#include <hwif/vxbus/vxBus.h> /* drvBusFuncs */
#include <hwif/vxbus/vxbPciLib.h>/* 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, /* 這是個Device的Driver */
VXB_BUSID_PCI, /* 這是個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)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。