Simplifying IoT development
Sample code for Location information
//--------------------------------------------------------------------------------------------------
//--------------------------------------------------------------------------------------------------
static
void
Testle_mrc_GetLocInfo()
{
uint32_t cellId;
uint32_t lac;
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);
}