kerneltest/e32test/device/t_fir.h
author Tom Cosgrove <tom.cosgrove@nokia.com>
Fri, 28 May 2010 16:29:07 +0100
changeset 137 8aab599e3476
parent 0 a41df078684a
permissions -rw-r--r--
Fix for bug 2283 (RVCT 4.0 support is missing from PDK 3.0.h) Have multiple extension sections in the bld.inf, one for each version of the compiler. The RVCT version building the tools will build the runtime libraries for its version, but make sure we extract all the other versions from zip archives. Also add the archive for RVCT4.

// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "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:
// e32test\device\t_fir.h
// 
//

//#include <es_sock.h>
#include <e32test.h>
#include <e32cons.h>
#include <d32comm.h>
#include <d32fir.h>

#ifndef __T_FIR__
#define __T_FIR__ 

#define PDD_NAME _L("difiba")
#define LDD_NAME _L("efir")


class CActiveWriter;
class CActiveReader;
class CActiveConsole : public CActive
//-----------------------------------
	{
public:
	  // Construction
	CActiveConsole(CConsoleBase* aConsole);
	static CActiveConsole* NewLC(CConsoleBase* aConsole);
	void ConstructL();

	  // Destruction
	~CActiveConsole();

	  // Issue request
	void RequestCharacter();
	
	  // Cancel request.
	  // Defined as pure virtual by CActive;
	  // implementation provided by this class.
	void DoCancel();

	  // Service completed request.
	  // Defined as pure virtual by CActive;
	  // implementation provided by this class,
	void RunL();

	void ProcessKeyPressL(TChar aChar);

	void GetFirRegs();
	void GetDmaReaderRegs();
	void GetDmaWriterRegs();
	void GetReadBufInfo();
	void GetWriteBufInfo();
	void GetChunkInfo();
	void GetMiscInfo();
	void SetUpBuffers();
	void Options1();
	void Options2();
	void Options3();
public:
	  // Data members defined by this class
	CConsoleBase*   iConsole;	// A console for reading from
	CActiveWriter*  iWriter;	// Client wrapper for CObexClient
	CActiveReader*  iReader;	// Client wrapper for CObexServer
	RDevFir iPort;
	TBool iInit1;
	TBool iInit2;
	TBool iInit3;
	TBps iBaudRate;
	};


class CActiveWriter : public CActive
//-----------------------------------------------------------
	{
public:
	// Construction
	CActiveWriter(CConsoleBase* aConsole,RDevFir* aPort);
	static CActiveWriter* NewL(CConsoleBase* aConsole,RDevFir* aPort);
	void ConstructL();

	~CActiveWriter();

	void Start();
	void Stop();
private:
	void RunL ();
	void DoCancel ();


private:
	CConsoleBase* iConsole;
	RDevFir* iPort;
	TInt iLength;
	};


class CActiveReader : public CActive
//-----------------------------------------------------------
	{
public:
	// Construction
	CActiveReader(CConsoleBase* aConsole,RDevFir* aPort);
	static CActiveReader* NewL(CConsoleBase* aConsole,RDevFir* aPort);
	void ConstructL();

	virtual ~CActiveReader();

	void Start();
	void Stop();
private:
	void RunL ();
	void DoCancel ();

	void ResetReadBuffer();
	TBool CompareBuffers(TInt aLen);

private:
	CConsoleBase* iConsole;
	RDevFir* iPort;

	};

#endif  // __T_FIR__