Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\drivers\usbcsc.inl
15 // Kernel side inline header file for USB device driver.
24 #ifndef __USBCSC_INL__
25 #define __USBCSC_INL__
29 // --- USB Logical Device Driver (LDD) ---
32 TUsbcScEndpointInfo* TUsbcScEndpoint::EndpointInfo()
34 return &iEndpointInfo;
38 void TUsbcScEndpoint::SetClientReadPending(TBool aVal)
40 iClientReadPending = aVal;
44 TBool TUsbcScEndpoint::ClientReadPending()
46 return iClientReadPending;
50 void TUsbcScEndpoint::SetClientWritePending(TBool aVal)
52 iClientWritePending = aVal;
56 TBool TUsbcScEndpoint::ClientWritePending()
58 return iClientWritePending;
62 void TUsbcScEndpoint::SetRealEpNumber(TInt aRealEpNumber)
64 iRealEpNumber = aRealEpNumber;
65 iRequestCallbackInfo->iRealEpNum = aRealEpNumber;
69 TInt TUsbcScEndpoint::RealEpNumber() const
73 TInt TUsbcScEndpoint::EpNumber() const
75 return iEndpointNumber;
77 void TUsbcScEndpoint::StartBuffer()
79 iBuffer->StartEndpoint(iRequestCallbackInfo, iEndpointInfo.iFlags);
82 void TUsbcScEndpoint::SetBuffer(TUsbcScBuffer* aBuffer)
84 __ASSERT_ALWAYS(iBuffer==NULL, Kern::Fault("TUsbcScEndpoint::SetBuffer", __LINE__));
88 TUsbcScBuffer* TUsbcScEndpoint::GetBuffer()
90 __ASSERT_DEBUG(iBuffer!=NULL, Kern::Fault("TUsbcScEndpoint::GetBuffer", __LINE__));
94 inline TBool DLddUsbcScChannel::ValidEndpoint(TInt aEndpoint)
96 return (aEndpoint <= iNumberOfEndpoints && aEndpoint >= 0);
99 inline TBool DLddUsbcScChannel::Configured()
101 if (iValidInterface &&
102 (iDeviceState == EUsbcDeviceStateConfigured || iDeviceState == EUsbcDeviceStateSuspended))
107 #endif // __USBCSC_INL__