Not getting emergency messages via GSM..?
-
I too did get message.. the next day, and I believe that was regular SMS. Probably worked as a fallback?
-
Yes, I'm sure this isn't supported yet on UT.
I remember earlier this year we had an issue with a volcano and there was a time where everyone's phone in the office randomly rings loudly because of the emergency messages except me LOL -
@kugiigi said in Not getting emergency messages via GSM..?:
issue with a volcano
Damn, now that's quite some issue . Rad.
-
@Talkless 2020 has been really an eventful year so far and our country's theme has been face masks (ashfall and now virus). I guess emergency messages are important now more than ever Anyone up for the challenge? I wonder if it's quite trivial or a complicated thing to do. Does ofono already support it?
-
@kugiigi See https://github.com/rilmodem/ofono/search?q=cell&type= - there is a lot of code and even tests inside, so I would assume its at least somehow working.
-
Okay it seems the cell broadcast is not implemented for the rilmodem driver, so yes, there would be some work to be done for the rild interface.
-
@Flohack They also need to be handled specially in the rest of the system. There's no UI to present them, etc⦠and should not appear in messaging-app.
-
@dobey Yeah agree. Its basically a feature-implementation through the whole middleware stack. Fun to do if you have nothing else to do lol.
-
@Flohack said in Not getting emergency messages via GSM..?:
Fun to do if you have nothing else to do lol.
Yeah and how would you actually test it..?
-
@Talkless if you develop it correctly you would use interfaces in development that allows mocking of all the parts as you travel the stack up. So, except for the reception in ofono which cannot be tested 100% without a real message all the parts can be unit-tested to show that they work correctly.
-
@Flohack said in Not getting emergency messages via GSM..?:
cannot be tested 100% without a real message
Yeah that's what I had in mind. Mocking is doable, but that one..