pinephone no longer receiving calls or texts
#1
Hi,

My pinephone is no longer getting calls or texts, and I'm trying to understand why. A while back I had a similar problem, wherein the model seemed clogged:

forum.pine64.org/showthread.php?tid=16939&page=2

But, I never actually got the bottom of that. I've tried using mmcli to see the stored messages:

mmcli -m 0 AT+CPMS?


But it just returns information about the modem (copied below). Does anyone know what might be going on?

-----------------------------------
  General  |              dbus path: /org/freedesktop/ModemManager1/Modem/0
          |              device id: b6df770f2cdf2a32fe9b70af378e85fcc9b3e3b8
  -----------------------------------
  Hardware |            manufacturer: QUALCOMM INCORPORATED
          |                  model: QUECTEL Mobile Broadband Module
          |      firmware revision: EG25GGBR07A08M2G
          |          carrier config: hVoLTE-Verizon
          | carrier config revision: 05010141
          |            h/w revision: 10000
          |              supported: gsm-umts, lte
          |                current: gsm-umts, lte
          |            equipment id: 860195051746581
  -----------------------------------
  System  |                  device: /sys/devices/platform/soc/1c1b000.usb/usb3/3-1
          |                drivers: qmi_wwan, option1
          |                  plugin: quectel
          |            primary port: cdc-wdm0
          |                  ports: cdc-wdm0 (qmi), ttyUSB0 (qcdm), ttyUSB1 (gps),
          |                          ttyUSB2 (at), ttyUSB3 (at), wwan0 (net)
  -----------------------------------
  Numbers  |                    own: --------
  -----------------------------------
  Status  |                    lock: sim-pin2
          |          unlock retries: sim-pin (3), sim-puk (10), sim-pin2 (3), sim-puk2 (10)
          |                  state: connected
          |            power state: on
          |            access tech: lte
          |          signal quality: 52% (recent)
  -----------------------------------
  Modes    |              supported: allowed: 2g; preferred: none
          |                          allowed: 3g; preferred: none
          |                          allowed: 4g; preferred: none
          |                          allowed: 2g, 3g; preferred: 3g
          |                          allowed: 2g, 3g; preferred: 2g
          |                          allowed: 2g, 4g; preferred: 4g
          |                          allowed: 2g, 4g; preferred: 2g
          |                          allowed: 3g, 4g; preferred: 4g
          |                          allowed: 3g, 4g; preferred: 3g
          |                          allowed: 2g, 3g, 4g; preferred: 4g
          |                          allowed: 2g, 3g, 4g; preferred: 3g
          |                          allowed: 2g, 3g, 4g; preferred: 2g
          |                current: allowed: 2g, 3g, 4g; preferred: 2g
  -----------------------------------
  Bands    |              supported: egsm, dcs, pcs, g850, utran-1, utran-4, utran-6, utran-5,
          |                          utran-8, utran-2, eutran-1, eutran-2, eutran-3, eutran-4, eutran-5,
          |                          eutran-7, eutran-8, eutran-12, eutran-13, eutran-18, eutran-19,
          |                          eutran-20, eutran-25, eutran-26, eutran-28, eutran-38, eutran-39,
          |                          eutran-40, eutran-41, utran-19
          |                current: egsm, dcs, pcs, g850, utran-1, utran-4, utran-6, utran-5,
          |                          utran-8, utran-2, eutran-1, eutran-2, eutran-3, eutran-4, eutran-5,
          |                          eutran-7, eutran-8, eutran-12, eutran-13, eutran-18, eutran-19,
          |                          eutran-20, eutran-25, eutran-26, eutran-28, eutran-38, eutran-39,
          |                          eutran-40, eutran-41, utran-19
  -----------------------------------
  IP      |              supported: ipv4, ipv6, ipv4v6
  -----------------------------------
  3GPP    |                    imei: 860195051746581
          |            operator id: 311480
          |          operator name: Verizon
          |            registration: home
  -----------------------------------
  SIM      |              dbus path: /org/freedesktop/ModemManager1/SIM/0
  -----------------------------------
  Bearer  |              dbus path: /org/freedesktop/ModemManager1/Bearer/
  Reply
#2
(06-01-2023, 07:13 PM)jyoung Wrote: But, I never actually got the bottom of that. I've tried using mmcli to see the stored messages:

mmcli -m 0 AT+CPMS?

Try these commands. I used these for a long time. 
The sms number on the delete line comes from the first command

Code:
mmcli -m any --messaging-list-sms
sudo mmcli -m any --messaging-delete-sms=7
sudo systemctl restart eg25-manager.service

==Another note==
I never got stuck messages after I flashed my modem with Biktorgj's firmware. 
See this video: https://youtu.be/QgFtFzPhXJw

My devices:
PinePhone 16G
PinePhone Pro 
Both running DanctNIX Arch Linux Arm with Phosh
Provider: USA Patriot Mobile (T-Mobile)
  Reply
#3
(06-02-2023, 07:17 AM)mikehenson Wrote:
(06-01-2023, 07:13 PM)jyoung Wrote: But, I never actually got the bottom of that. I've tried using mmcli to see the stored messages:

mmcli -m 0 AT+CPMS?

Try these commands. I used these for a long time. 
The sms number on the delete line comes from the first command

Code:
mmcli -m any --messaging-list-sms
sudo mmcli -m any --messaging-delete-sms=7
sudo systemctl restart eg25-manager.service

==Another note==
I never got stuck messages after I flashed my modem with Biktorgj's firmware. 
See this video: https://youtu.be/QgFtFzPhXJw

My devices:
PinePhone 16G
PinePhone Pro 
Both running DanctNIX Arch Linux Arm with Phosh
Provider: USA Patriot Mobile (T-Mobile)

Interesting, when I run

Code:
mmcli -m any --messaging-list-sms


I get

Code:
No sms messages were found
  Reply
#4
(06-05-2023, 09:59 PM)jyoung Wrote:
(06-02-2023, 07:17 AM)mikehenson Wrote:
(06-01-2023, 07:13 PM)jyoung Wrote: But, I never actually got the bottom of that. I've tried using mmcli to see the stored messages:

mmcli -m 0 AT+CPMS?

Try these commands. I used these for a long time. 
The sms number on the delete line comes from the first command

Code:
mmcli -m any --messaging-list-sms
sudo mmcli -m any --messaging-delete-sms=7
sudo systemctl restart eg25-manager.service

==Another note==
I never got stuck messages after I flashed my modem with Biktorgj's firmware. 
See this video: https://youtu.be/QgFtFzPhXJw

My devices:
PinePhone 16G
PinePhone Pro 
Both running DanctNIX Arch Linux Arm with Phosh
Provider: USA Patriot Mobile (T-Mobile)

Interesting, when I run

Code:
mmcli -m any --messaging-list-sms


I get

Code:
No sms messages were found
This is kind of an old thread, but I'm still working on this issue. The current state of the phone is that it can receive calls, but not texts. I attempted to flash the firmware, as in the youtube linked above, but the first step is to install gnome-firwmare. That worked, but the gnome-firwmare app didn't detect the modem's firmware, only the display's. Still hunting for a solution..
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  PinePhone - boot from microSD laserpyramid 7 617 04-25-2024, 05:56 AM
Last Post: aular
  pinephone virtual keyboard aular 4 366 04-10-2024, 03:45 PM
Last Post: aular
  PinePhone Doesn't Boot LED Doesn't Show Any Signs When Charging dorkydev 1 245 04-02-2024, 11:50 AM
Last Post: Kevin Kofler
  4G VoLTE calls confirmed working with carrier x dcinoz 15 11,893 03-09-2024, 11:38 PM
Last Post: dcinoz
  Are you using the Pinephone as your daily driver? jro 157 109,581 02-18-2024, 11:33 PM
Last Post: aular
  2020 PinePhone Manjaro CE EU for sale, name your price astrojuanlu 7 1,854 02-14-2024, 04:51 PM
Last Post: astrojuanlu
  pinephone is not bootble for the box. ijij 1 622 01-19-2024, 01:29 PM
Last Post: fxc
  Multiple issues with the Pinephone MTXP 12 2,408 12-28-2023, 07:55 AM
Last Post: MTXP
  pinephone repair shop shengchieh 0 509 12-26-2023, 02:42 PM
Last Post: shengchieh
  sudo nano file saving pinephone beta edition CharlesGnarley 4 1,728 12-22-2023, 03:44 PM
Last Post: Kevin Kofler

Forum Jump:


Users browsing this thread: 2 Guest(s)