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