FreeCalypso > hg > fc-magnetite
view src/aci2/bmi/mmiDummy.c @ 632:d968a3216ba0
new tangomdm build target
TCS211/Magnetite built for target leonardo runs just fine on the Tango-based
Caramel board, but a more proper tangomdm build target is preferable in order
to better market these Tango modems to prospective commercial customers. The
only differences are in GPIO and MCSI config:
* MCSI is enabled in the tangomdm build config.
* GPIO 1 is loudspeaker amplifier control on Leonardo, but on Tango platforms
it can be used for anything. On Caramel boards this GPIO should be
configured as an output driving high.
* GPIO 2 needs to be configured as Calypso input on Leonardo, but on Tango
platforms it can be used for anything. On Caramel boards this GPIO should be
configured as an output, either high or low is OK.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 04 Jan 2020 19:27:41 +0000 |
parents | 93999a60b835 |
children |
line wrap: on
line source
/******************************************************************************* CONDAT (UK) ******************************************************************************** This software product is the property of Condat (UK) Ltd and may not be disclosed to any third party without the express permission of the owner. ******************************************************************************** $Project name: Basic MMI $Project code: BMI (6349) $Module: Start $File: MmiDummy.c $Revision: 1.0 $Author: Condat(UK) $Date: 25/10/00 ******************************************************************************** Description: ******************************************************************************** $History: MmiDummy.c July 09, 2005 REF : MMI-22565 - a0876501 Description: IMEI CD byte calculation added Solution: Byte alignment done for IMEI display. May 02, 2005 REF : LOCOSTO-ENH-30818 - xpradipg Description: IMEI retreival by posting a call to ACI sAT_xx API Solution: The direct call to cl_get_imeisv() is replaced with the call to the callNUmber() which inturn calls sAT_Dn() and retrieves the IMEI info ******************************************************************************* Include files *******************************************************************************/ #define ENTITY_MFW /* includes */ #include <string.h> #include <stdio.h> #include <stdlib.h> #if defined (NEW_FRAME) #include "typedefs.h" #include "vsi.h" #include "pei.h" #include "custom.h" #include "gsm.h" #else #include "STDDEFS.H" #include "custom.h" #include "gsm.h" #include "vsi.h" #endif #include "mon_aci.h" #include "tok.h" #ifndef PCM_2_FFS #include "pcm.h" #else #include "prim.h" #endif #include "message.h" #include "prim.h" #include "aci_cmh.h" //NM #include "mfw_sys.h" #include "mfw_mfw.h" #include "mfw_win.h" #include "mfw_kbd.h" #include "mfw_lng.h" #include "mfw_icn.h" /* SPR#1428 - SH - New Editor changes */ #ifndef NEW_EDITOR #include "mfw_edt.h" #endif #include "mfw_mnu.h" #include "mfw_sat.h" #include "mfw_nm.h" #include "mfw_tim.h" #include "mfw_phb.h" #include "mfw_sms.h" #include "dspl.h" #include "ksd.h" #include "psa.h" //NM #include "gdi.h" #include "audio.h" #ifndef FF_2TO1_PS #include "cl_imei.h" /* IMEI common library */ #endif //NM #include "MmiVersion.h" #include "MmiMmi.h" #include "MmiDummy.h" #include "MmiDialogs.h" #include "MmiLists.h" #include "MmiMain.h" // May 02, 2005 REF : LOCOSTO-ENH-30818 - xpradipg #ifdef FF_MMI_ATC_MIGRATION #define ATD_IMEI "*#06#" #define IMEI_LEN 15 EXTERN void callNumber(UBYTE *number); #endif // May 02, 2005 REF : LOCOSTO-ENH-30818 - xpradipg #ifdef FF_MMI_ATC_MIGRATION char imei[IMEI_LEN+1]; #endif // July 09, 2005 REF : MMI-22565 - a0876501 extern UBYTE getCdByteFromImei(UBYTE *imei); //Added by Muthu for PCM Replacemeny #ifdef PCM_2_FFS #define PSPDF_IMEI_ID "/PCM/IMEI" /* Int. Mobile Equipment Id */ #endif /******************************************************************************************* * * Global definition of message function plus some dummies * *******************************************************************************************/ void mmi_send_event (T_MFW_HND win, USHORT event, USHORT value, void * parameter) { if (win){ T_MFW_WIN * win_data = ((T_MFW_HDR *)win)->data; T_MMI_CONTROL * control = (T_MMI_CONTROL *)win_data->user; if (control->dialog NEQ 0) (control->dialog) (win, event, value, parameter); } } UBYTE idle_screen_has_focus() { return TRUE; } // May 02, 2005 REF : LOCOSTO-ENH-30818 - xpradipg // this function is no more referenced hence omit it #ifdef FF_MMI_ATC_MIGRATION /******************************************************************************* $Function: mmi_imei_retrieve $Description: This function invokes sAT_Dn() to retrieve the IMEI and store it in the global variabel "imei". $Returns: $Arguments: *******************************************************************************/ void mmi_imei_retrieve() { callNumber((UBYTE*)ATD_IMEI); } #else /******************************************************************************* $Function: get_imei $Description: This function invokes the operation for key sequence command for getting the IMEI. $Returns: $Arguments: *******************************************************************************/ int get_imei(char *imei) { #ifdef FF_2TO1_PS UBYTE retVal; /* holds return value */ UBYTE version; /* holds version */ #ifdef PCM_2_FFS UBYTE buf[8]; // Sizeof ( T_PSPDF_IMEI ) #else UBYTE buf[SIZE_EF_IMEI]; #endif TRACE_FUNCTION ("get_imei()"); #ifdef PCM_2_FFS retVal = ffs_file_read((UBYTE *)PSPDF_IMEI_ID, buf, sizeof( T_PSPDF_IMEI ) ); #else retVal = pcm_ReadFile ((UBYTE *)EF_IMEI_ID, SIZE_EF_IMEI, buf, &version); #endif #ifndef PCM_2_FFS if( retVal EQ PCM_INVALID_SIZE OR retVal EQ PCM_INVALID_FILE ) return( FALSE ); #endif #else UBYTE buf[CL_IMEI_SIZE]; TRACE_FUNCTION ("get_imei()"); cl_get_imeisv(CL_IMEI_SIZE, buf, CL_IMEI_GET_STORED_IMEI); #endif imei[0] = ((buf [0] >> 4) & 0x0F)+0x30; imei[1] = ( buf [0] & 0x0F) +0x30; imei[2] = ((buf [1] >> 4) & 0x0F)+0x30; imei[3] = ( buf [1] & 0x0F)+0x30; imei[4] = ((buf [2] >> 4) & 0x0F)+0x30; imei[5] = ( buf [2] & 0x0F)+0x30; imei[6] = ((buf [3] >> 4) & 0x0F)+0x30; imei[7] = ( buf [3] & 0x0F)+0x30; imei[8] = ((buf [4] >> 4) & 0x0F)+0x30; imei[9] = ( buf [4] & 0x0F)+0x30; imei[10] = ((buf [5] >> 4) & 0x0F)+0x30; imei[11] = ( buf [5] & 0x0F)+0x30; imei[12] = ((buf [6] >> 4) & 0x0F)+0x30; imei[13] = ( buf [6] & 0x0F)+0x30; // July 09, 2005 REF : MMI-22565 - a0876501 // For calculating the Cd byte imei[14] = ((getCdByteFromImei(buf)) & 0x0F)+0x30; imei[15] = (( buf [7] >> 4) & 0x0F)+0x30; imei[16] = ( buf [7] & 0x0F)+0x30; imei[17] = 0; TRACE_EVENT_P8("MMI INFO IMEI: TAC %1c%1c%1c%1c%1c%1c%1c%1c", imei[0], imei[1], imei[2], imei[3], imei[4], imei[5], imei[6], imei[7]); TRACE_EVENT_P6("MMI INFO IMEI: SNR %1c%1c%1c%1c%1c%1c", imei[8], imei[9], imei[10], imei[11], imei[12], imei[13]); TRACE_EVENT_P4("MMI INFO IMEI: SV CD %1c%1c%1c%1c", imei[14], imei[15], imei[16],imei[17]); return( TRUE ); } #endif char* get_build_user() { return BUILD_USER; } char* get_build_date() { return BUILD_DATE; } char* get_build_time() { return BUILD_TIME; } /************************ End of functions *************************************************/ #ifndef FF_WAP void rAT_WAP_start_gprs_login(void) { //Dummy function - WAP disabled/not compiled } #endif /* END OF DUMMY FUNCTIONS */