FreeCalypso > hg > fc-tourmaline
comparison src/ui/bmi/mmiEm.h @ 3:67bfe9f274f6
src/ui: import of src/ui3 from Magnetite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Oct 2020 06:33:10 +0000 |
parents | |
children | c0052fe355d3 |
comparison
equal
deleted
inserted
replaced
2:3a14ee9a9843 | 3:67bfe9f274f6 |
---|---|
1 #ifndef _MMI_EM_H_ | |
2 #define MMI_EM_H_ | |
3 /******************************************************************************* | |
4 | |
5 CONDAT (UK) | |
6 | |
7 ******************************************************************************** | |
8 | |
9 This software product is the property of Condat (UK) Ltd and may not be | |
10 disclosed to any third party without the express permission of the owner. | |
11 | |
12 ******************************************************************************** | |
13 | |
14 $Project name: Basic MMI | |
15 $Project code: BMI (6349) | |
16 $Module: Engineering mode | |
17 $File: MmiEm.h | |
18 $Revision: 1.0 | |
19 | |
20 $Author: Condat(UK) | |
21 $Date: 23/09/02 | |
22 | |
23 ******************************************************************************** | |
24 | |
25 Description: | |
26 | |
27 Handles Engineering mode at MMI level | |
28 | |
29 ******************************************************************************** | |
30 $History: MmiEm.c | |
31 | |
32 Apr 24, 2006 ERT: OMAPS00067603 x0043642 | |
33 Description: Engineering mode | |
34 Solution: Added new engineering mode function prototypes to satisfy Neptune engineering mode | |
35 requirements. | |
36 | |
37 $End*/ | |
38 | |
39 | |
40 /******************************************************************************* | |
41 | |
42 Include files | |
43 | |
44 *******************************************************************************/ | |
45 | |
46 | |
47 | |
48 #include "mfw_mfw.h" | |
49 #include "mfw_mnu.h" | |
50 | |
51 | |
52 /******************************Function Prototypes*******************************/ | |
53 void mmi_em_init(void); | |
54 | |
55 void mmi_em_exit(void); | |
56 | |
57 //#ifdef TI_PS_FF_EM | |
58 #if defined (TI_PS_FF_EM) || defined (MMI_EM_ENABLED) | |
59 /*Starts the engineering mode menu*/ | |
60 void mmi_em_start_eng_mode_menus(T_MFW_HND parent); | |
61 #endif | |
62 | |
63 #ifndef NEPTUNE_BOARD | |
64 | |
65 | |
66 /*Called from menu; begins process to display Mobile Information*/ | |
67 int Mmi_em_display_mobile_info_data(MfwMnu* m, MfwMnuItem* i); | |
68 | |
69 /*Called from menu; begins process to display Serving Cell parameters*/ | |
70 int Mmi_em_display_serving_cell_params(MfwMnu* m, MfwMnuItem* i); | |
71 | |
72 /*Called from menu; begins process to display Neighbouring Cell parameters*/ | |
73 int Mmi_em_display_neighbour_cell_params(MfwMnu* m, MfwMnuItem* i); | |
74 | |
75 /*Called from menu; begins process to display Locationparameters*/ | |
76 int Mmi_em_display_location_params(MfwMnu* m, MfwMnuItem*i ); | |
77 | |
78 /*begins process to display Ciphering, hopping and discontinuous transmission parameters*/ | |
79 int Mmi_em_display_ciph_hop_DTX_params(MfwMnu* m, MfwMnuItem* i); | |
80 | |
81 /*Called from menu; begins process to display GPRS specific parameters*/ | |
82 int Mmi_em_display_GPRS_params(MfwMnu* m, MfwMnuItem* i); | |
83 | |
84 #else /* if NEPTUNE_BOARD */ | |
85 | |
86 /*Called from menu; begins process to display Serving Cell parameters*/ | |
87 int Mmi_em_start(MfwMnu* m, MfwMnuItem* i); | |
88 | |
89 | |
90 #endif /*ifndef NEPTUNE_BOARD */ | |
91 | |
92 #endif |