Questions tagged [lte]

LTE (telecommunication) - Long Term Evolution

LTE is a standard for wireless communication of high-speed data for mobile phones and data terminals. The standard is developed by the 3GPP ( http://www.3gpp.org/LTE ).

LTE (Long Term Evolution) or the E-UTRAN (Evolved Universal Terrestrial Access Network), introduced in 3GPP R8, is the access part of the Evolved Packet System (EPS). The main requirements for the new access network are high spectral efficiency, high peak data rates, short round trip time as well as flexibility in frequency and bandwidth.

The LTE access network is simply a network of base stations, evolved NodeB (eNB), generating a flat architecture (figure 2). There is no centralized intelligent controller, and the eNBs are normally inter-connected viathe X2-interface and towards the core network by the S1-interface (figure 2). The reason for distributing the intelligence amongst the base-stations in LTE is to speed up the connection set-up and reduce the time required for a handover. For an end-user the connection set-up time for a real time data session is in many cases crucial, especially in on-line gaming. The time for a handover is essential for real-time services where end-users tend to end calls if the handover takes too long.

To understand the PS(protocol stack) of LTE which tells about data & signaling messages flow between different entities of LTE network interface. For more details about each layers one can refer below 3GPP specs. LTE PS is divided mainly into two categories NAS and AS Layers.

  • NAS(Non-access stratum) Layer
  • AS(Access Stratum) Layer
    • RRC(Radio Resource Control) Layer. Refer 36.331
    • PDCP(Packet Data Convergence Protocol) Layer. Refer 36.323
    • RLC(Radio Link Control) Layer Refer 36.322
    • MAC(Medium Access Control) Layer. Refer 36.321
    • PHY(Physical) Layer. Refer 36.201
295 questions
0
votes
1 answer

Convert RSRP to RSSI from CellSignalStrengthLte

So I need to get RSSI of LTE network and I know that CellSignalStrengthLte has special method for getting RSSI, but it is available for API >= 29, but my app has min API of 23. However I can get a RSRP value for signal strength and I saw that there…
MrArtyD
  • 113
  • 1
  • 9
0
votes
2 answers

Using both Wifi and mobile network at the same time in flutter app

In my flutter app, I need to get information from a device via wifi as a stream. Also I need to keep my google maps online via Mobile internet. How can I use both wifi and mobile network at the same time in my phone. I made a lot of search but I…
0
votes
1 answer

Is there a smooth way to get the eNB id of a cell tower in Android Studio?

im new to android app development and currently trying to get the eNB in Android Studio with Kotlin. Im aware of this solution: How to get eNB id of LTE on Android Studio (TelephonyManager) However, if I try to implement this, my app just crashes…
F4Wins
  • 11
  • 1
0
votes
1 answer

SIMCOM A7600E trouble receiving UDP packages

I'm having trouble receiving UDP packages using a A7600E modem. I am required to send and receive UDP packages over LTE using dedicated IP addresses. I am able to: obtain the dedicated IPv4 the ISP has allocated for us. send a package over the…
madonion
  • 1
  • 2
0
votes
0 answers

iOS app cannot connect to server over LTE network on iOS 14.7.1

Since last week one user of an app of mine is reporting that the app cannot reach the server on a cellular network. His phone is running iOS 14.7.1 and he has an LTE network connection. The app works perfectly on wifi and I have not had any reports…
ehusmann
  • 37
  • 8
0
votes
1 answer

Check if device supports LTE Data Connection

I am learning Android development to my own and wandering to know if my device has the hardware that can support the LTE network. I am trying the below, but I think it is giving me wrong data ConnectivityManager cm = (ConnectivityManager)…
Java Nerd
  • 137
  • 1
  • 4
  • 17
0
votes
1 answer

Java TCP/IP over GSM/LTE connection delayed

I experienced a strange behavior when connecting via a TCP/IP socket over GSM/LTE. I have various distributed applications. They all connect through TCP/IP to my server. Immediately when the connection is established the client sends a connection…
RG01
  • 121
  • 1
  • 1
  • 9
0
votes
1 answer

Azure Sphere - Quectel BG96 LTE AT Command - Azure IoT Device Provisioning Service - MQTT

I have an azure sphere application connected and pushing telemetry to Azure IoT device provisioning service with inbuilt wifi module available in MT3620 MCU. I followed this article to achieve…
0
votes
1 answer

AT / CMQTT, subscription silently removed after publish (cmqttpub)

I am using MQTT on a SIM7500 LTE modem. I can connect to some mqtt broker after sending a bunch of AT and MQTT commands. The thing I didn't expect to happen, is when I publish a topic from my modem, I loose the subscription I had open. Regardless of…
bas
  • 13,550
  • 20
  • 69
  • 146
0
votes
1 answer

How to link USR-7S4 with TI CC2640R2F through UART programming?

USR-7S4 is an LTE module and I just want to check whether it can communicate with CC2640R2F BLE module.
0
votes
1 answer

Can we reprogram a SIM card given by a network operator?

I'm new to SIM Cards and there is something I don't understand. Are all SIM Cards reprogrammable? If I try to reprogram a SIM Card given by a Network Operator (let's say from AT&T), can I use a standard USB smart card reader? I ordered blank…
MR RsO
  • 23
  • 1
  • 5
0
votes
1 answer

What network vendor would you prefer if you want to manage LTE interfaces via API. Cisco Juniper ?? or other vendors

I'm looking for a LTE router with API option , to manage interfaces via scripts , is there any recommendation ?
ovntatar
  • 416
  • 1
  • 3
  • 17
0
votes
2 answers

AT+CSQ report at LTE network

Is AT+CSQ RSSI interpretation the same for LTE as for GSM and UMTS? I can't seem to find any solid info on the Internet. My AT+CSQ returns RSSI and BER. BER always seems to be 99, and RSSI differs between 0 and 31 for GSM, and between seemingly 0…
0
votes
1 answer

Client sends ABORT in response to SCTP INIT ACK

I am working on telcom product and using a tool to create SCTP connection with peer node. I see that client sends INIT to server, Server sends back INIT-ACK. Now client is generating ABORT to this message. I wonder what might have gone wrong.
ajay thakur
  • 111
  • 1
  • 3
0
votes
1 answer

Problem Running Omnet simulation (exit code 1)

I'm trying to run a simulation in OMNeT++. I started my own project which references veins, inet, and lte. I've copied their examples modifying the .ned packages to test the project setting. About four days ago I was able to run all the examples.…