mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-19 05:57:30 -04:00
Images generated using PlantUML had transparent backgrounds which made their text difficult to read on GitHub when using "Dark Mode". Forcing a background color of #F0F0F0 ensures they are all readable.
39 lines
976 B
Plaintext
39 lines
976 B
Plaintext
@startuml
|
|
skinparam BackgroundColor F0F0F0
|
|
|
|
state "Disable autoselect MBN" as DautoMBN
|
|
DautoMBN:AT+QMBNCFG="autoselect",0
|
|
|
|
state "List MBN" as ListMBN
|
|
ListMBN:AT+QMBNCFG="list"
|
|
|
|
state "Select ROW MBN" as SelectROWMBN
|
|
SelectROWMBN:AT+QMBNCFG="deactivate"
|
|
SelectROWMBN:AT+QMBNCFG="select","ROW_Generic_3GPP"
|
|
|
|
state "Reboot modem" as Reboot
|
|
Reboot: AT+CFUN=1,1 via SoftReset
|
|
Reboot: Init modem, MBN auto-setup IMS APN
|
|
|
|
state "IMS" as IMS
|
|
IMS: AT+QCFG="ims",1
|
|
IMS: AT+QNVFR="/nv/item_files/ims/IMS_enable"
|
|
|
|
state "Set PS as preferred" as SetPS
|
|
SetPS:Set Packets Switching as preferred method for voice and SMS
|
|
SetPS:AT+QNVFR="/nv/item_files/modem/mmode/voice_domain_pref"
|
|
SetPS:AT+QNVFR="/nv/item_files/modem/mmode/sms_domain_pref"
|
|
|
|
SetPS --> DautoMBN
|
|
DautoMBN --> ListMBN
|
|
ListMBN --> SelectROWMBN: Generic MBN not selected
|
|
ListMBN --> IMS: If correct MBN is selected
|
|
|
|
|
|
SelectROWMBN --> IMS
|
|
IMS --> Reboot: Only if select new MBN
|
|
|
|
|
|
|
|
@enduml
|