Lines Matching defs:intParmas
1485 struct UsbRequestParams intParmas = {};
1491 intParmas.userData = (void *)acm;
1492 intParmas.pipeAddress = acm->intPipe->pipeAddress;
1493 intParmas.pipeId = acm->intPipe->pipeId;
1494 intParmas.interfaceId = acm->intPipe->interfaceId;
1495 intParmas.callback = AcmCtrlIrq;
1496 intParmas.requestType = USB_REQUEST_PARAMS_DATA_TYPE;
1497 intParmas.timeout = USB_CTRL_SET_TIMEOUT;
1498 intParmas.dataReq.numIsoPackets = 0;
1499 intParmas.dataReq.directon = (((uint8_t)acm->intPipe->pipeDirection) >> USB_PIPE_DIR_OFFSET) & DIRECTION_MASK;
1500 intParmas.dataReq.length = acm->intSize;
1501 ret = UsbFillRequest(acm->notifyReq, InterfaceIdToHandle(acm, acm->intPipe->interfaceId), &intParmas);