0
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
#ifndef T_VIDEOMEMORY_H
|
|
18 |
#define T_VIDEOMEMORY_H
|
|
19 |
|
|
20 |
// Constants for testing of videomory.
|
|
21 |
// There is no science behind the values - they are just different numbers
|
|
22 |
// that are expected to read back the same as they were written. The purpose
|
|
23 |
// is not to validate that the video memory as SUCH works, so no need for covering
|
|
24 |
// all sorts of different bit patterns, walking ones/zeros. We just need to have a
|
|
25 |
// way to see that we can write something, and that it changes if a differnet value
|
|
26 |
// written.
|
|
27 |
|
|
28 |
const TUint32 KTestValue1 = 0x12345678;
|
|
29 |
const TUint32 KTestValue2 = 0x87654321;
|
|
30 |
const TUint32 KTestValue3 = 0x11223344;
|
|
31 |
const TUint32 KTestValue4 = 0x44332211;
|
|
32 |
|
|
33 |
#endif
|