您好,登錄后才能下訂單哦!
這篇文章主要介紹vxworks中VxBus怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
#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); }
再執行就正常了
以上是“vxworks中VxBus怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。