atmodem: add LTE to Telit #PSNT status parser

Network type of 4 in Telit #PSNT command response
denotes LTE network
This commit is contained in:
Piotr Haber 2017-01-25 10:23:56 +01:00 committed by Denis Kenzior
parent 8d330087cf
commit c493491c1a
1 changed files with 3 additions and 0 deletions

View File

@ -323,6 +323,9 @@ static void telit_mode_notify(GAtResult *result, gpointer user_data)
case 3:
bearer = 5; /* HSDPA */
break;
case 4:
bearer = 7; /* LTE */
break;
default:
bearer = 0;
break;