Update contrib.
1 // Copyright (c) 1998-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\adc.h
15 // ADC controller header file
16 // Currently only used in Series 5mx port
29 const TInt KNumAdcChannelPriorities=4;
31 // ADC operation is specified by a list of commands
32 // Each command is specified by a 32 bit word:
33 // Bit 16=1 -> wait for n ms before proceeding to next command (n=bits 0-15)
34 // Bit 17=1 -> do preamble
35 // Bit 18=1 -> do postamble
36 // Bit 19=1 -> take a reading
37 // Bit 20=1 -> don't store reading
42 EAdcCmdPreamble=0x20000,
43 EAdcCmdPostamble=0x40000,
44 EAdcCmdReading=0x80000,
45 EAdcCmdDiscard=0x100000,
46 EAdcCmdDummyReading=0x180000,
50 class TAdcChannel : public TPriListLink
53 IMPORT_C TAdcChannel(TInt anAdc);
55 IMPORT_C void Read(TInt* aReadingBuffer);
57 IMPORT_C virtual void Preamble();
58 IMPORT_C virtual void Postamble();
59 virtual void Complete()=0;
64 const TInt* iCommandList;
68 NONSHARABLE_CLASS(DAdc) : public DBase
74 virtual void StartConversion(TInt aChannelId)=0;
76 void Add(TAdcChannel* aChannel);
77 void Execute(TAdcChannel* aChannel);
80 void ConversionComplete(TInt aValue);
82 TInt DoSetMinPriority(TInt aPriority);
83 IMPORT_C static TInt SetMinPriority(TInt anAdc, TInt aPriority);
85 TPriList<TAdcChannel,KNumAdcChannelPriorities> iList;
86 TAdcChannel* iCurrentChannel;
88 const TInt* iCommandPtr;
92 static DAdc** TheAdcs;
93 static TInt NumberOfAdcs;