view src/g23m-aci/aci/dcm_handle_message.c @ 303:f76436d19a7a default tip

!GPRS config: fix long-standing AT+COPS chance hanging bug There has been a long-standing bug in FreeCalypso going back years: sometimes in the AT command bring-up sequence of an ACI-only MS, the AT+COPS command would produce only a power scan followed by cessation of protocol stack activity (only L1 ADC traces), instead of the expected network search sequence. This behaviour was seen in different FC firmware versions going back to Citrine, and seemed to follow some law of chance, not reliably repeatable. This bug has been tracked down and found to be specific to !GPRS configuration, stemming from our TCS2/TCS3 hybrid and reconstruction of !GPRS support that was bitrotten in TCS3.2/LoCosto version. ACI module psa_mms.c, needed only for !GPRS, was missing in the TCS3 version and had to be pulled from TCS2 - but as it turns out, there is a new field in the MMR_REG_REQ primitive that needs to be set correctly, and that psa_mms.c module is the place where this initialization needed to be added.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 08 Jun 2023 08:23:37 +0000
parents fa8dc04885d8
children
line wrap: on
line source

/*
+-----------------------------------------------------------------------------
|  Project :  GSM-F&D (8411)
|  Modul   :  ACI
+-----------------------------------------------------------------------------
|  Copyright 2002 Texas Instruments Berlin, AG
|                 All rights reserved.
|
|                 This file is confidential and a trade secret of Texas
|                 Instruments Berlin, AG
|                 The receipt of or possession of this file does not convey
|                 any rights to reproduce or disclose its contents or to
|                 manufacture, use, or sell anything it may describe, in
|                 whole, or in part, without the specific written consent of
|                 Texas Instruments Berlin, AG.
+-----------------------------------------------------------------------------
|  Description :  DCM handle_msg function, which is called when DCM
|                 receives a new message by application or rAT_function.
+-----------------------------------------------------------------------------
*/


/***********************************  INCLUDES ********************************************/
#include "aci_all.h"
#include "dcm.h"
#include "dcm_utils.h"
#include "dcm_state.h"
#include "dcm_env.h"

/**************************** LOCAL VARIABLE DEFINITION  ***********************************/
/**************************** EXTERN VARIABLE DEFINITION  **********************************/
extern T_DCM_ENV_CTRL_BLK	*dcm_env_ctrl_blk_p;

/**************************** LOCAL FUCNTION DEFINITION  ***********************************/
/************************** EXTERN FUCNTION DEFINITION  ************************************/


/******************************************************************************************
*  Function      : dcm_handle_message
*  Description   : Called every time DCM is in WAITING state or
*                  When receiving message from Application or rAT_function
*  Parameter     :	 T_DCM_HDR
*                    -Pointer on the header of the message.
*  Return 	     : T_DCM_RET DCM
*                    -DCM Result : DCM_OK, DCM_NOT_READY.
*  History       : 0001 03/09/17 CJH Created
********************************************************************************************/
T_DCM_RET dcm_handle_message(T_DCM_HDR *msg_p)
{
  T_DCM_GET_CURRENT_CONN_REQ_MSG   *current_conn_info;

  TRACE_FUNCTION("DCM: dcm_handle_message()");
  dcm_display_message(msg_p->msg_id);
  dcm_dispay_state((U8)dcm_env_ctrl_blk_p->state[0],
                   (U8)dcm_env_ctrl_blk_p->substate[0]);

  if (msg_p != NULL)
  {
    /* get current conn req is always received regardless of current state..*/
    if(msg_p->msg_id == DCM_GET_CURRENT_CONN_REQ_MSG)
    {
      TRACE_EVENT("DCM: DCM_GET_CURRENT_CONN_REQ_MSG");
      current_conn_info = (T_DCM_GET_CURRENT_CONN_REQ_MSG*)msg_p;
      dcm_process_get_current_conn_event(current_conn_info);
      return DCM_OK;
    }
    switch (dcm_env_ctrl_blk_p->state[0])
    {
      case DCM_IDLE:
        TRACE_EVENT("DCM: DCM_IDLE") ;
        /* there is no current action */
        return dcm_idle(msg_p);

      case DCM_ACTIVATING_CONN:
        TRACE_EVENT("DCM: DCM_ACTIVATING_CONN") ;
        /* An IP User have asked the opening of a connection */
        return dcm_activating_conn(msg_p);

      case DCM_CONN_ACTIVATED:
        TRACE_EVENT("DCM: DCM_CONN_ACTIVATED") ;
        /* At leat, on connection is active */
        return dcm_conn_activated(msg_p);

      case DCM_CLOSING_CONN:
        TRACE_EVENT("DCM: DCM_CLOSING_CONN") ;
        /* An IP User have asked the closing of a connection */
        return dcm_closing_conn(msg_p);

      default:
        TRACE_EVENT("DCM: unknown state") ;
        return DCM_NOT_READY;
    }
  }
  else
  {
    TRACE_ERROR("DCM: NULL message") ;
    return DCM_INVALID_PARAMETER;
  }
}