usrwv.c
来自「IXP425的BSP代码」· C语言 代码 · 共 40 行
C
40 行
/* usrWv.c - windview configuration library *//* Copyright 1984-1997 Wind River Systems, Inc. *//*modification history--------------------01a,03jun98,ms written*//*DESCRIPTIONWindview initialization code.*//* globals */char * bufferAddress; /* windview: address of event buffer *//******************************************************************************** usrWvInit - initialize windview*/void usrWvInit (void) { /* initialize WindView host target connection */ connRtnSet (evtSockInit, evtSockClose, evtSockError, evtSockDataTransfer); /* set the characteristics of the event task - tEvtTask */ wvEvtTaskInit (WV_EVT_STACK, WV_EVT_PRIORITY); /* initialize windview instrumentation buffers and tasks */ bufferAddress = wvInstInit (EVTBUFFER_ADDRESS, EVTBUFFER_SIZE, WV_MODE); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?