Developing Telephony functionality
Last updated
Plasma Mobile uses ModemManager as telephony stack. However, there is a very useful debugging tool for the competing telephony stack, oFono. This page describes how to use it for development of Plasma Mobile telephony features.
Phonesim will add a fake phone modem that can be controlled via a Qt based user interface. This interface makes it possible to test various aspects of the phone UI: making calls, receiving, signal strength, send SMS and so on.
The current stable release of phonesim is still based on Qt5. On most distributions, you need to compile it yourself from the source code. If you need a Qt6 based version, you currently have to resort to this fork. In some cases, you might be able to install ofono-phonesim from your distribution’s repository.
To set up ofono-phonesim for development:
Install oFono
Edit /etc/ofono/phonesim.conf, and uncomment everything so that it looks like
[phonesim]
Address=127.0.0.1
Port=12345Start ofonod (systemctl start ofono)
Start phonesim
./src/phonesim -gui -p 12345 ../src/default.xmlA bit surprisingly, at first nothing will happen. That is fine, since the UI will only be displayed once the virtual modem is activated.
From the oFono source directory, call ./test/enable-modem to bring the modem up, the control UI should come up
Call ./test/online-modem to activate the test phonesim modem
Install the phonesim branch of this oFono2MM fork, until it is merged upstream.
Then reload the available systemd services systemctl daemon-reload and restart ModemManager systemctl restart ModemManager). The running ModemManager will now be the fake oFono based implementation.
If you need to restore the normal ModemManager later, delete /usr/lib/systemd/system/ModemManager.service.d/10-ofono2mm.conf
You should now be able to receive SMS in Spacebar. Make sure to start spacebar-daemon before spacebar.
Last updated