diff -r 000000000000 -r 29b1cd4cb562 bthci/hci2implementations/CommandsEvents/symbian/src/readcurrentiaclapcompleteevent.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bthci/hci2implementations/CommandsEvents/symbian/src/readcurrentiaclapcompleteevent.cpp Fri Jan 15 08:13:17 2010 +0200 @@ -0,0 +1,74 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// This file was generated automatically from the template completeeventsource.tmpl +// on Wed, 25 Jul 2007 17:00:36 (time stamp) +// +// + +/** + @file + @internalComponent +*/ + +#include +#include +#include +#include "symbiancommandseventsutils.h" + +#ifdef __FLOG_ACTIVE +_LIT8(KLogComponent, LOG_COMPONENT_COMMANDSEVENTS_SYMBIAN); +#endif + +// Construct an event object to wrap existing event data received from the Controller +EXPORT_C TReadCurrentIACLAPCompleteEvent::TReadCurrentIACLAPCompleteEvent(const TDesC8& aEventData) + : THCICommandCompleteEvent(aEventData) + { + iErrorCode = THCIErrorCode(iEventData[5]); // Status field is in octet 6 + } + +// Construct an event object to generate a faked event using the supplied parameters +EXPORT_C TReadCurrentIACLAPCompleteEvent::TReadCurrentIACLAPCompleteEvent(THCIErrorCode aStatus, TUint8 aNumHCICommandPackets, TUint8 aNumCurrentIAC, const TArray< TUint32 >& aIACLAP, TDes8& aEventData) + : THCICommandCompleteEvent(aNumCurrentIAC * 3 + 2 + KCommandCompleteCommonFieldsLength, aNumHCICommandPackets, KReadCurrentIACLAPOpcode, aEventData) + { + iErrorCode = aStatus; + PutTUint8(aStatus, aEventData); + PutTUint8(aNumCurrentIAC, aEventData); + for(int i=0;i(&const_cast(aEvent))); + } + +// Accessor methods for the parameters of the event + +EXPORT_C TUint8 TReadCurrentIACLAPCompleteEvent::NumCurrentIAC() const + { + return AsTUint8(6); + } + +EXPORT_C TUint32 TReadCurrentIACLAPCompleteEvent::IACLAP(TInt aIndex) const + { + return AsTUint32(7, 3, aIndex, 3); + } + +