view src/ui/mfw/mfw_ssi.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: MMI-Framework (8417)         $Workfile:: mfw_ssi.h       $|
| $Author:: Vo                          $Revision::  1              $|
| CREATED: 25.1.99                      $Modtime:: 12.01.00 12:06   $|
| STATE  : code                                                      |
+--------------------------------------------------------------------+

   MODULE  : MFW_SSI

   PURPOSE : Internal definitions for supplementary management of MMI framework


   $History:: mfw_ssi.h                                              $

	July 23, 2005   REF : MMI-22565 - a0876501
	Description:	IMEI CD byte calculation added
	Solution:	Byte alignment done for IMEI display.

 * 
 * *****************  Version 7  *****************
 * User: Vo           Date: 14.01.00   Time: 20:17
 * Updated in $/GSM/Condat/MS/SRC/MFW
 * 
 * *****************  Version 6  *****************
 * User: Vo           Date: 13.09.99   Time: 10:36
 * Updated in $/GSM/DEV/MS/SRC/MFW
 * new prototype
 * 
 * *****************  Version 5  *****************
 * User: Vo           Date: 30.08.99   Time: 11:45
 * Updated in $/GSM/DEV/MS/SRC/MFW
 * add 'reason' in function ss_error_string()
 * 
 * *****************  Version 4  *****************
 * User: Vo           Date: 2.07.99    Time: 15:27
 * Updated in $/GSM/DEV/MS/SRC/MFW
 * 
 * *****************  Version 3  *****************
 * User: Vo           Date: 22.06.99   Time: 8:54
 * Updated in $/GSM/DEV/MS/SRC/MFW
 * 
 * *****************  Version 2  *****************
 * User: Vo           Date: 20.05.99   Time: 17:47
 * Updated in $/GSM/DEV/MS/SRC/MFW
 * 
 * *****************  Version 1  *****************
 * User: Vo           Date: 10.02.99   Time: 12:41
 * Created in $/GSM/DEV/MS/SRC/MFW
*/

#ifndef DEF_MFW_SSI
#define DEF_MFW_SSI

#include "ksd.h"

typedef enum              
{
    MFW_MODUL_UNKNOWN = 0,
    MFW_PHB,
    MFW_SIM_CPIND,
    MFW_SIM_CPINE
} T_MFW_SS_MODUL;
    
/* SS Control Block */
typedef struct
{
    T_MFW_EVENT     emask;          /* events of interest */
    T_MFW_EVENT     event;          /* current event */
    T_MFW_CB        handler;
    T_MFW_SS_PARA   para;
} T_MFW_SS;

/* Supplementary services capabilities */
typedef struct
{
    UBYTE speech;   /* speech support (vers. 1) */
    UBYTE data;     /* Data support             */
    UBYTE asyn;     /* T Async data support     */
    UBYTE syn;      /* NT Sync data support     */
    UBYTE aoc;
    UBYTE dtmf;
    UBYTE cf;
    UBYTE cb;
    UBYTE ussd;
    UBYTE etc;
    UBYTE clire;
    UBYTE clipr;
} T_MFW_SS_SUPORT;

T_MFW_SS_RETURN ss_decode   (UBYTE *string, CHAR **rt, T_KSD_SEQPARAM *p);
void            ss_notify   (T_MFW_SS_NOTIFY_CODES code,
						     SHORT                 index,
						     UBYTE                *number, 
						     UBYTE                *subaddr);
T_MFW           ss_set_clck (T_ACI_FAC fac, 
                             T_ACI_CLCK_MOD mode, 
                             CHAR *passwd,
                             T_ACI_CLASS class_type, 
                             UBYTE modul);
void            ss_command_info  (T_ACI_CLOG* clog);
void            ss_ok_string     (T_ACI_AT_CMD cmdId);
void            ss_error_string  (T_ACI_AT_CMD cmdId, T_ACI_CME_ERR reason);
void            ss_ok_clck      (void);
void            ss_error_clck   (void);
void            ss_ok_ussd      (T_ACI_AT_CMD cmdId);
void            ss_error_ussd   (T_ACI_AT_CMD cmdId, T_ACI_CME_ERR reason);
T_MFW_SS_NOTIFY_CODES ss_cvtCssiCodes(T_ACI_CSSI_CODE code);
T_MFW_SS_NOTIFY_CODES ss_cvtCssuCodes(T_ACI_CSSU_CODE code);


//	July 23, 2005   REF : MMI-22565 - a0876501
UBYTE getCdByteFromImei(UBYTE *imei);

#endif