view src/ui/mfw/mfw_cb.h @ 78:c632896652ba

mfw/ti1_key.c: properly initialize notified_keys array The code in this ti1_key.c layer needs to call kpd_subscribe() and kpd_define_key_notification() functions in order to register with the KPD driver. The original code passed KPD_NB_PHYSICAL_KEYS in nb_notified_keys - this constant is defined to 24 in kpd_cfg.h on all platforms of interest to us - but it only filled the first 23 slots in the notified_keys array, resulting in stack garbage being passed to KPD API functions. The fix consists of initializing the last missed array slot to KPD_KEY_RECORD, the key ID for the right side button on the D-Sample handset. On our current hw targets this "Record" button exists as the EXTRA button on our Luna keypad board and as the camera button on the Pirelli DP-L10. There is no support whatsoever for this button in current BMI+MFW, we have no plans of doing anything with Pirelli's camera button even if we do get our UI fw running on that phone, and the Mother's dream of building our own FreeCalypso handset with the same button arrangement as D-Sample (including the right side button) is currently very nebulous - but let us nonetheless handle the full set of buttons on the KPD to MFW interface, and let upper layers weed out unsupported buttons.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 25 Oct 2020 23:41:01 +0000
parents 67bfe9f274f6
children 92abb46dc1ba
line wrap: on
line source

/*
+--------------------------------------------------------------------+
| PROJECT: GSM-MFW (?)                  $Workfile:: mfw_cb.h       $|
| $Author:: Es                          $Revision::  1              $|
| CREATED: 14.10.98                     $Modtime:: 27.10.98 17:32   $|
| STATE  : code                                                      |
+--------------------------------------------------------------------+

	PURPOSE :  Types definitions for MMI framework call backs distribution

	$History:: mfw_cm.h                                              $

        May 10, 2006    REF: DRT OMAPS00075829  xdeepadh
        Description: Submission of ACI and SAP changes for Imaging ERs 
        Solution: Using the mechanism where MFW can receive primitives without
        ACI to know about it.

	x0018858 24 Mar, 2005 MMI-FIX-11321
	Issue Description :- If the inbox is full and a new message is receivd, no indication is received.
	Fix: Added support for handling indication when message box is full and
	there is a pending message.


    .
*/

#ifndef DEF_MFW_CB_HEADER
#define DEF_MFW_CB_HEADER

// May 10, 2006    REF: DRT OMAPS00075829  xdeepadh
#if defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP)

/*Defining the premitive*/
#define MSL_MMI_IND      0x110   /*Specifying hex value */

typedef struct
{
  U32                       handle;                   /*<  0:  4> Basic Element                                      */
  U32                       appData;                  /*<  4:  4> Basic Element                                      */
  U32                       message;                  /*<  8:  4> Basic Element                                      */
  U32                       ucp;                      /*< 12:  4> Basic Element                                      */
} T_MSL_MMI_IND;



#endif //defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP)
/*
 * not yet defined in aci_cmh.h
 */
#define CME_ERR_SimPin2Req  35
#define CME_ERR_SimPuk2Req  36
//	x0018858 24 Mar, 2005 MMI-FIX-11321
extern UBYTE sms_check_message_pending(void);
// May 10, 2006    REF: DRT OMAPS00075829  xdeepadh
#if defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP)
GLOBAL BOOL mslPrimHandler (USHORT opc, void * data) ;
GLOBAL  void Mslil_msl_mmi_ind ( T_MSL_MMI_IND *msl_mmi_ind); /*a0393213 compiler warning removal - removed const*/
/*a0393213 cphs rel4*/
#ifdef FF_CPHS_REL4
GLOBAL void rAT_PercentCFIS ( T_ACI_CFIS_CFU *cfis );
#endif
#endif //#if defined(FF_MMI_FILEMANAGER)||defined(FF_MMI_CAMERA_APP)
#endif