os/kernelhwsrv/kernel/eka/include/drivers/xyin.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\drivers\xyin.h
sl@0
    15
// Generic digitiser driver header
sl@0
    16
//
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @internalComponent
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __M32XYIN_H__
sl@0
    25
#define __M32XYIN_H__
sl@0
    26
#include <kernel/kpower.h>
sl@0
    27
#include <platform.h>
sl@0
    28
#include <e32hal.h>
sl@0
    29
sl@0
    30
#ifdef _DEBUG
sl@0
    31
//#define __DIGITISER_DEBUG1__
sl@0
    32
//#define __DIGITISER_DEBUG2__
sl@0
    33
#endif
sl@0
    34
#ifdef __DIGITISER_DEBUG1__
sl@0
    35
#define __KTRACE_XY1(s) s;
sl@0
    36
#else
sl@0
    37
#define __KTRACE_XY1(s)
sl@0
    38
#endif
sl@0
    39
#ifdef __DIGITISER_DEBUG2__
sl@0
    40
#define __KTRACE_XY2(s) s;
sl@0
    41
#else
sl@0
    42
#define __KTRACE_XY2(s)
sl@0
    43
#endif
sl@0
    44
sl@0
    45
/**
sl@0
    46
@internalComponent
sl@0
    47
*/
sl@0
    48
const TInt KMaxXYSamples=4;
sl@0
    49
sl@0
    50
/**
sl@0
    51
@publishedPartner
sl@0
    52
@released
sl@0
    53
*/
sl@0
    54
struct SDigitiserConfig
sl@0
    55
	{
sl@0
    56
	TInt iPenDownDiscard;	// number of samples to discard on entering the detection volume (area if 2 dimensional)
sl@0
    57
	TInt iPenUpDiscard;		// number of samples to discard on leaving the detection volume (area if 2 dimensional)
sl@0
    58
	TInt iDriveXRise;		// number of milliseconds to wait when driving horizontal edges
sl@0
    59
	TInt iDriveYRise;		// number of milliseconds to wait when driving vertical edges
sl@0
    60
	TInt iMinX;				// minimum valid X value
sl@0
    61
	TInt iMaxX;				// maximum valid X value
sl@0
    62
	TInt iSpreadX;			// maximum valid X spread
sl@0
    63
	TInt iMinY;				// minimum valid Y value
sl@0
    64
	TInt iMaxY;				// maximum valid Y value
sl@0
    65
	TInt iSpreadY;			// maximum valid Y spread
sl@0
    66
	TInt iMaxJumpX;			// maximum X movement per sample (pixels)
sl@0
    67
	TInt iMaxJumpY;			// maximum Y movement per sample (pixels)
sl@0
    68
	TInt iAccThresholdX;	// accumulated offset in pixels to cause movement in X direction
sl@0
    69
	TInt iAccThresholdY;	// accumulated offset in pixels to cause movement in Y direction
sl@0
    70
	TInt iNumXYSamples;		// number of samples to average
sl@0
    71
	TBool iDisregardMinMax;	// TRUE if we want to disregard minimum and maximum
sl@0
    72
	};
sl@0
    73
sl@0
    74
/**
sl@0
    75
@publishedPartner
sl@0
    76
@prototype
sl@0
    77
*/
sl@0
    78
struct SDigitiserConfigV01
sl@0
    79
	{
sl@0
    80
	SDigitiserConfig i2dConfig;
sl@0
    81
	TInt iMinZ;				// minimum valid Z value (distance to screen): 0 when lighlty touching (no pressure applied)
sl@0
    82
	TInt iMaxZ;				// maximum valid Z value: positive for distance to screen, negative for pressure
sl@0
    83
	TInt iSpreadZ;			// maximum valid Z spread (in distance to screen units)
sl@0
    84
	TInt iMaxJumpZ;			// maximum Z movement per sample (in distance to screen units)
sl@0
    85
	TInt iAccThresholdX;	// accumulated offset in distance to screen units to cause movement in Z direction
sl@0
    86
	};
sl@0
    87
sl@0
    88
/**
sl@0
    89
@publishedPartner
sl@0
    90
@released
sl@0
    91
*/
sl@0
    92
NONSHARABLE_CLASS(DDigitiser) : public DPowerHandler
sl@0
    93
	{
sl@0
    94
public:
sl@0
    95
/**
sl@0
    96
@internalComponent
sl@0
    97
*/
sl@0
    98
	enum TState
sl@0
    99
		{
sl@0
   100
		EIdle=0,			// waiting for pen to go down
sl@0
   101
		EDiscardOnPenDown,	// discarding just after pen down
sl@0
   102
		EBufferFilling,		// buffer filling with samples
sl@0
   103
		EBufferFull,		// delay line is now full
sl@0
   104
		EPenDown,			// pen-down event has been delivered
sl@0
   105
		};
sl@0
   106
public:
sl@0
   107
	// initialisation
sl@0
   108
	static DDigitiser* New();
sl@0
   109
	DDigitiser();
sl@0
   110
	TInt Create();
sl@0
   111
	virtual TInt DoCreate()=0;
sl@0
   112
public:
sl@0
   113
	// signals from hardware-dependent code
sl@0
   114
	void RawSampleValid();
sl@0
   115
	void PenUp();
sl@0
   116
public:
sl@0
   117
	// signals to hardware-dependent code
sl@0
   118
	virtual void WaitForPenDown()=0;
sl@0
   119
	virtual void WaitForPenUp()=0;
sl@0
   120
	virtual void WaitForPenUpDebounce()=0;
sl@0
   121
	virtual void DigitiserOn()=0;
sl@0
   122
	virtual void DigitiserOff()=0;
sl@0
   123
public:
sl@0
   124
	// machine-configuration related things
sl@0
   125
	virtual TInt DigitiserToScreen(const TPoint& aDigitiserPoint, TPoint& aScreenPoint)=0;
sl@0
   126
	virtual void ScreenToDigitiser(TInt& aX, TInt& aY)=0;
sl@0
   127
	virtual TInt SetXYInputCalibration(const TDigitizerCalibration& aCalibration)=0;
sl@0
   128
	virtual TInt CalibrationPoints(TDigitizerCalibration& aCalibration)=0;
sl@0
   129
	virtual TInt SaveXYInputCalibration()=0;
sl@0
   130
	virtual TInt RestoreXYInputCalibration(TDigitizerCalibrationType aType)=0;
sl@0
   131
	virtual void DigitiserInfo(TDigitiserInfoV01& aInfo)=0;
sl@0
   132
public:
sl@0
   133
	// Generic stuff
sl@0
   134
/**
sl@0
   135
@internalComponent
sl@0
   136
*/
sl@0
   137
	void ProcessRawSample();
sl@0
   138
/**
sl@0
   139
@internalComponent
sl@0
   140
*/
sl@0
   141
	void ProcessPenUp();
sl@0
   142
/**
sl@0
   143
@internalComponent
sl@0
   144
*/
sl@0
   145
	TBool SamplesToPoint(TPoint& aPoint);
sl@0
   146
/**
sl@0
   147
@internalComponent
sl@0
   148
*/
sl@0
   149
	TInt DelayAndConvertSample(const TPoint& aSample, TPoint& aScreenPoint);
sl@0
   150
/**
sl@0
   151
@internalComponent
sl@0
   152
*/
sl@0
   153
	void IssuePenDownEvent();
sl@0
   154
/**
sl@0
   155
@internalComponent
sl@0
   156
*/
sl@0
   157
	void IssuePenUpEvent();
sl@0
   158
	void IssuePenMoveEvent(const TPoint& aPoint);
sl@0
   159
	virtual void FilterPenMove(const TPoint& aPoint)=0;
sl@0
   160
	virtual void ResetPenMoveFilter()=0;
sl@0
   161
/**
sl@0
   162
@internalComponent
sl@0
   163
*/
sl@0
   164
	virtual TInt HalFunction(TInt aFunction, TAny* a1, TAny* a2);
sl@0
   165
/**
sl@0
   166
@internalComponent
sl@0
   167
*/
sl@0
   168
 	void HandleMsg(TMessageBase* aMsg);
sl@0
   169
public:
sl@0
   170
	TDfcQue* iDfcQ;
sl@0
   171
 	TMessageQue iMsgQ;
sl@0
   172
	TDfc iSampleDfc;				// called when a raw sample is available
sl@0
   173
	TDfc iPenUpDfc;					// called when the pen goes up
sl@0
   174
	TInt iX[KMaxXYSamples];			// raw X samples from hardware
sl@0
   175
	TInt iY[KMaxXYSamples];			// raw Y samples from hardware
sl@0
   176
	SDigitiserConfig iCfg;			// configuration
sl@0
   177
	TInt iBufferIndex;				// delay line index
sl@0
   178
	TPoint* iBuffer;				// delay line for samples
sl@0
   179
	TPoint iLastPos;				// last pen position
sl@0
   180
	TState iState;
sl@0
   181
	TInt iCount;
sl@0
   182
	TUint8 iPointerOn;
sl@0
   183
	};
sl@0
   184
sl@0
   185
sl@0
   186
sl@0
   187
#endif