Sample code for Location information

//--------------------------------------------------------------------------------------------------
/**
* Test: Location information.
*
*/
//--------------------------------------------------------------------------------------------------
static void Testle_mrc_GetLocInfo
(
void
)
{
uint32_t cellId, lac;
uint16_t tac;
 
LE_INFO("le_mrc_GetServingCellId returns cellId.%d", cellId);
LE_INFO("le_mrc_GetServingCellLocAreaCode returns lac.%d",lac);
LE_INFO("le_mrc_GetServingCellLteTracAreaCode returns Tac.0x%X (%d)", tac, tac);
}