(06-30-2022, 06:46 PM)jyoung Wrote: Hi, a few weeks ago I noticed that the chat app on my pinephone isn't getting texts anymore. I can still send them, but not recieve. I'm running mobian phosh on a pinephone beta. I haven't changed carrier or anything, and I haven't really changed anything on the phone. Does anyone know what might be going on?
install minicom
Followed by connecting to the modem tty through minicom by
Code:
sudo minicom -D /dev/ttyUSB2
Entered
Code:
AT+CMGD=?
Which as far as I know is the test form that will simply show the parameters and their valid range.
Code:
+CMGD: (1,2,3,4,5,6,etc),(0-4)
Taking the 0-4 from the end I entered it into the delete command from the pdf like so
Code:
AT+CMGD=0,4
Which as best as I could see tells the modem to delete the message at index 0 and to delete all messages (delflags=4) so it's kindof redundant...
Rerunning the command to list the messages
Code:
(AT+CMGD=?)
Code:
+CMGD: (),(0-4)
Which verified to me that the list of messages was cleared.
Then exited minicom with a reset. by pressing Ctrl + A then X and selected yes.