Hello.
//--------------------------------------------------------------------------------------------------
/**
This function selects the Card on which all further SIM operations have to be operated.
@return LE_FAULT The function failed.
@return LE_TIMEOUT No response was received.
@return LE_OK The function succeeded.
*/
//--------------------------------------------------------------------------------------------------
le_result_t pa_sim_SelectCard
(
le_sim_Id_t cardId ///< The SIM to be selected
)
{
if (cardId != LE_SIM_EXTERNAL_SLOT_1)
{
return LE_FAULT;
}
UimSelect = cardId;
return LE_OK;
}
In the source code, when requesting the status of a SIM card, only the 1st slot is used. Why is the 2nd slot worn out, how to work with the second SIM card?