|
1 /* |
|
2 * Copyright (c) 2007 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 "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: Private Central Repository keys. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef DIAGNOSTICSFWPRIVATECRKEYS_H |
|
20 #define DIAGNOSTICSFWPRIVATECRKEYS_H |
|
21 |
|
22 // INCLUDES |
|
23 |
|
24 #include <e32std.h> |
|
25 |
|
26 // ============================================================================= |
|
27 // Diagnostics Framework |
|
28 // ============================================================================= |
|
29 |
|
30 const TUid KCRUidDiagnosticsFw = { 0x2000B16B }; |
|
31 |
|
32 /** |
|
33 * Configure number of microseconds Diagnostics Framework will delay before starting |
|
34 * to execute each test. This gives user a chance to cancel before a test |
|
35 * begins. |
|
36 */ |
|
37 const TUint32 KDiagFwTestInitDelay = 0x00000001; |
|
38 |
|
39 /** |
|
40 * Configure number of microseconds of test inactivity Diagnostics Framework will |
|
41 * tolerate before cancelling an interactive test. This prevents single tests |
|
42 * from blocking entire testing session. |
|
43 * The value will be used for interactive test steps. |
|
44 */ |
|
45 const TUint32 KDiagFwWatchdogTimeoutInteractive = 0x00000002; |
|
46 |
|
47 /** |
|
48 * Configure number of microseconds of test inactivity Diagnostics Framework will |
|
49 * tolerate before cancelling an automatic test. This prevents single tests |
|
50 * from blocking entire testing session. |
|
51 * The value will be used for non-interactive (automatic) test steps. |
|
52 */ |
|
53 const TUint32 KDiagFwWatchdogTimeoutAutomatic = 0x00000003; |
|
54 |
|
55 #endif // DIAGNOSTICSFWPRIVATECRKEYS_H |
|
56 |
|
57 // End of File |
|
58 |