view src/g23m-fad/tcpip/rnet.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

/*---------------------------------------------------------------------------
 * Adaption of Riviera Net (RNET) TCP/IP to GPF and DTI2
 *-------------------------------------------------------------------------*/

/* Here we define some dummy Riviera Frame functions
 * so that we can link an executable,
 * only to be sure that we've copied all we need. */

/*-------------------------------------------------------------------------*/

#include "rnet.h"

/*-------------------------------------------------------------------------*/


#include "atp_cmd.h"

/* from /ti/release/ti_5.4.0_p1/code/services/atp/atp_sw_ent.c */

T_ATP_RET atp_reg (
  T_ATP_SW_ENTITY_NAME name,
  T_ATP_CALLBACK return_path,
  T_ATP_ENTITY_MODE mode ,
  T_ATP_SW_ENTITY_ID * sw_id_p
) {
  return RV_OK;
}

T_ATP_RET atp_dereg (T_ATP_SW_ENTITY_ID sw_id)
{
  return RV_OK;
}

/*-------------------------------------------------------------------------*/

/* from /ti/release/ti_5.4.0_p1/code/services/atp/atp_services.c */

T_ATP_RET atp_send_data (
  T_ATP_SW_ENTITY_ID sender_sw_id,
  T_ATP_PORT_NB sender_port_nb,
  void * data_buffer_p,
  UINT32 buffer_size,
  UINT32 * nb_bytes_left_p
) {
  return RV_OK;
}

T_ATP_RET atp_get_data (
  T_ATP_SW_ENTITY_ID receiver_sw_id,
  T_ATP_PORT_NB receiver_port_nb,
  UINT8 * data_buffer,
  UINT32 nb_to_read,
  UINT32 * nb_read_p,
  UINT32 * nb_left_p
) {
  return RV_OK;
}

T_ATP_RET atp_open_port_rsp (
  T_ATP_SW_ENTITY_ID initiator_id,
  T_ATP_PORT_NB initiator_port_nb,
  T_ATP_SW_ENTITY_ID target_id,
  T_ATP_PORT_NB target_port_nb,
  T_ATP_PORT_INFO port_info,
  T_ATP_NO_COPY_INFO no_copy_info,
  T_ATP_CUSTOM_INFO * custom_info_p,
  T_ATP_OPEN_PORT_RESULT result
) {
  return RV_OK;
}

T_ATP_RET atp_free_buffer (void * buffer_p)
{
  return RV_OK;
}