11-20-2021, 12:53 AM
I may have found a fix, based on info from this thread:
https://forum.pine64.org/showthread.php?...5#pid65065
Using atinout, I did
sudo atinout - /dev/EG25.AT out.txt << EOF
> AT+CMGD=? #To show what's in the Modem's memory buffers
> AT+CMGD=0,4 #Iterates through the memory buffers between 0,4 and deletes each
> AT+CMDG=? #To double check it worked.
What I got was
+CMGD0,1,2,3,4,5,6,7,etc...)(0-4)
OK (Which shows that the memory buffers are full, 0-4 are the relevant buffers, which I found and then deleted)
OK (Shows we completed iterating through the buffers successfully)
+CMGD: (),(0-4)
OK (Double check that it worked, and it did!)
Sent a text to my phone and it came through! Not sure why it wasn't coming up in mmcli or Modem Manager GUI, it looked like it might be Verizon system data rather than actual SMS or MMS messages? I didn't do much investigation because I'm very tired and just wanted texts working on my phone again, but if I get the chance to examine what exactly was clogging it up I may come back and share that information.
I'm going to make a chron job like in that thread to have this code run every hour or so to make sure this doesn't happen again. Hopefully this thread will help if anybody on the Verizon network has the same problem, because that seems to be a common thread.
https://forum.pine64.org/showthread.php?...5#pid65065
Using atinout, I did
sudo atinout - /dev/EG25.AT out.txt << EOF
> AT+CMGD=? #To show what's in the Modem's memory buffers
> AT+CMGD=0,4 #Iterates through the memory buffers between 0,4 and deletes each
> AT+CMDG=? #To double check it worked.
What I got was
+CMGD0,1,2,3,4,5,6,7,etc...)(0-4)
OK (Which shows that the memory buffers are full, 0-4 are the relevant buffers, which I found and then deleted)
OK (Shows we completed iterating through the buffers successfully)
+CMGD: (),(0-4)
OK (Double check that it worked, and it did!)
Sent a text to my phone and it came through! Not sure why it wasn't coming up in mmcli or Modem Manager GUI, it looked like it might be Verizon system data rather than actual SMS or MMS messages? I didn't do much investigation because I'm very tired and just wanted texts working on my phone again, but if I get the chance to examine what exactly was clogging it up I may come back and share that information.
I'm going to make a chron job like in that thread to have this code run every hour or so to make sure this doesn't happen again. Hopefully this thread will help if anybody on the Verizon network has the same problem, because that seems to be a common thread.