Sample code for SIM Select

//--------------------------------------------------------------------------------------------------
/**
* Test: SIM selection.
*
*/
//--------------------------------------------------------------------------------------------------
void simTest_SimSelect
(
)
{
// Select the embedded SIM
 
// Get the selected card
 
// Select the LE_SIM_EXTERNAL_SLOT_1 SIM
 
// Get the selected card
 
// Check if SIM present
{
LE_INFO("SIM not present");
}
 
// Get the selected card by le_sim_GetSelectedCard()
// Notice that the selected card received is the one used by the
// last Legato API and not the one set by le_sim_SelectCard().
 
// Check SIM ready
{
LE_INFO("SIM not ready");
}
 
// Get the selected card by le_sim_GetSelectedCard()
// Notice that the selected card received is the one used by the
// last Legato API and not the one set by le_sim_SelectCard().
 
 
}